aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/pp.h
blob: e9148006e3d513a87e7789f86af6fc358de29ae4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef GUARD
#define GUARD

extern warnhere();
#define Foo 9
void hi(int x) {
   extern int printf(const char *, ...);
   printf("hi from header ;%d\n", x);
}
#if 1
#endif
#elifndef Ww
#define Bar 7
#define SQR_(x) (x)*(x)
#define SQR(y) SQR_(y)
#define ADD(a,b) (a)+(b)

#endif