diff options
Diffstat (limited to 'test/hello.c')
-rw-r--r-- | test/hello.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/hello.c b/test/hello.c new file mode 100644 index 0000000..bad06bc --- /dev/null +++ b/test/hello.c @@ -0,0 +1,5 @@ +int puts(const char *); +int main(void) { + puts("hello"); + return 0; +} |