diff options
Diffstat (limited to 'test/pp.h')
| -rw-r--r-- | test/pp.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/test/pp.h b/test/pp.h deleted file mode 100644 index 63de6f5..0000000 --- a/test/pp.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef GUARD -#define GUARD - -extern int printf(const char *, ...); -extern warnhere(); -#define Foo 9 -void hi(int x) { - printf("hi from header ;%d\n", x); -} -#if 1 -#endif -#elifndef Ww -#define Bar 7 -#define SQR_(x) ((x)*(x)) -#define SQR(y) SQR_(1+(y)-1) -#define ADD(a,b) (a)+(b) -#define STR(h) #h - -#define xstr(s1) str(s1) -#define str(...) #__VA_ARGS__ - -#endif - -extern int printf(const char *, ...); |