blob: 5450ec6d8f14f96dcab17fc0b2052367c2701db4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef TEST10
#define TEST10
#ifndef QQQ
#include "include2.h"
#elif !defined(ZZZ)
#include "include4.h"
#endif // QQQ
int function1();
#define ZZZ
#endif // TEST10
|