blob: 5ac7aacfaee2f23f87b871cae623231fdeabb561 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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
#endif
extern int printf(const char *, ...);
|