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