diff options
Diffstat (limited to 'make/examples/not-so-simple-header/foo/hello.c')
-rw-r--r-- | make/examples/not-so-simple-header/foo/hello.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/make/examples/not-so-simple-header/foo/hello.c b/make/examples/not-so-simple-header/foo/hello.c new file mode 100644 index 000000000000..7d5b402ce5c2 --- /dev/null +++ b/make/examples/not-so-simple-header/foo/hello.c @@ -0,0 +1,9 @@ +#include <stdio.h> + +#include "fnord/indirect.h" + +int main(int argc, char * * argv) +{ + printf(HELLO " " WHAT "\n"); + return 0; +} |