diff options
Diffstat (limited to 'klibc/klibc/tests/hello.c')
-rw-r--r-- | klibc/klibc/tests/hello.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/klibc/klibc/tests/hello.c b/klibc/klibc/tests/hello.c new file mode 100644 index 0000000000..20457af153 --- /dev/null +++ b/klibc/klibc/tests/hello.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(void) +{ + printf("Hello, World!\n"); + return 0; +} |