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