summaryrefslogtreecommitdiffstats
path: root/usr/klibc/tests/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/klibc/tests/hello.c')
-rw-r--r--usr/klibc/tests/hello.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/usr/klibc/tests/hello.c b/usr/klibc/tests/hello.c
new file mode 100644
index 0000000..3f859bd
--- /dev/null
+++ b/usr/klibc/tests/hello.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main(void)
+{
+ printf("Hello, World!\n");
+ return 0;
+}