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..98a93a0 --- /dev/null +++ b/test/hello.c @@ -0,0 +1,5 @@ +int printf(const char *, ...); + +int main() { + printf("hello world\n"); +} |