summaryrefslogtreecommitdiffstats
path: root/tests/foo.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/foo.c')
-rw-r--r--tests/foo.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/foo.c b/tests/foo.c
new file mode 100644
index 0000000..be71954
--- /dev/null
+++ b/tests/foo.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int bar();
+
+int foo()
+{
+ printf("This is foo()!\n");
+ return 12 + bar();
+}