summaryrefslogtreecommitdiff
path: root/doc/rake/example/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'doc/rake/example/main.c')
-rw-r--r--doc/rake/example/main.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/rake/example/main.c b/doc/rake/example/main.c
new file mode 100644
index 0000000000..a04558a251
--- /dev/null
+++ b/doc/rake/example/main.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+extern void a();
+extern void b();
+
+int main ()
+{
+ a();
+ b();
+ return 0;
+}