about summary refs log tree commit diff
path: root/make/examples/simple-header/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'make/examples/simple-header/hello.c')
-rw-r--r--make/examples/simple-header/hello.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/make/examples/simple-header/hello.c b/make/examples/simple-header/hello.c
new file mode 100644
index 0000000000..15f1ac714e
--- /dev/null
+++ b/make/examples/simple-header/hello.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+#include "hello.h"
+
+int main(int argc, char * * argv)
+{
+    printf("Hello " WHAT "\n");
+    return 0;
+}