diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/pp.c | 8 | ||||
| -rw-r--r-- | test/pp.h | 6 |
2 files changed, 14 insertions, 0 deletions
diff --git a/test/pp.c b/test/pp.c new file mode 100644 index 0000000..0c199dc --- /dev/null +++ b/test/pp.c @@ -0,0 +1,8 @@ + +#include "pp.h" +int +main(void) +{ + hi(); + return Foo; +} diff --git a/test/pp.h b/test/pp.h new file mode 100644 index 0000000..69da492 --- /dev/null +++ b/test/pp.h @@ -0,0 +1,6 @@ +extern warnhere(); +#define Foo 9 +void hi() { + extern int printf(); + printf("hi from header\n"); +} |