Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 328a57a

Browse files
committedMay 9, 2021
proper includes
1 parent 83c5b75 commit 328a57a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎.vscode/settings.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"files.associations": {
3+
"*.sjs": "javascript",
4+
"stdlib.h": "c",
5+
"stdio.h": "c"
6+
}
7+
}

‎main.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#include "stdio.h"
1+
#include <stdio.h>
2+
#include <stdlib.h>
23

34
char executable_code[128];
45
typedef void(function_call)();

0 commit comments

Comments
 (0)
Please sign in to comment.