summaryrefslogtreecommitdiff
path: root/test/silly/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/silly/hello.c')
-rw-r--r--test/silly/hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/silly/hello.c b/test/silly/hello.c
new file mode 100644
index 0000000..d330597
--- /dev/null
+++ b/test/silly/hello.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(void)
+{
+ printf("hello world\n");
+ exit(42);
+}