diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/pp.c | 4 | ||||
| -rw-r--r-- | test/pp.h | 8 |
2 files changed, 11 insertions, 1 deletions
@@ -1,8 +1,10 @@ #include "pp.h" +#include "pp.h" + int main(void) { hi(); - return Foo; + return Foo + Bar; } @@ -1,6 +1,14 @@ +#ifndef GUARD +#define GUARD + extern warnhere(); #define Foo 9 void hi() { extern int printf(); printf("hi from header\n"); } + +#elifndef Ww +#define Bar 7 + +#endif |