summaryrefslogtreecommitdiff
path: root/examples/hello_autotools/proj/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello_autotools/proj/main.c')
-rw-r--r--examples/hello_autotools/proj/main.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/hello_autotools/proj/main.c b/examples/hello_autotools/proj/main.c
new file mode 100644
index 0000000..05a6dd3
--- /dev/null
+++ b/examples/hello_autotools/proj/main.c
@@ -0,0 +1,11 @@
+#include <hello_autotools-config.h>
+
+#ifdef HAVE_STDIO_H
+#include <stdio.h>
+#endif
+
+int main (int argc, char **argv)
+{
+ puts ("Hello AutoShi^H^H^HTools!");
+ return 0;
+}