aboutsummaryrefslogtreecommitdiffstats
path: root/test/fixtures/helloworld/helloworld/helloworld.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixtures/helloworld/helloworld/helloworld.c')
-rw-r--r--test/fixtures/helloworld/helloworld/helloworld.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/fixtures/helloworld/helloworld/helloworld.c b/test/fixtures/helloworld/helloworld/helloworld.c
new file mode 100644
index 0000000..94ebcdc
--- /dev/null
+++ b/test/fixtures/helloworld/helloworld/helloworld.c
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main() {
+ printf ("Hello, World!\n");
+ return 0;
+}