blob: ab5c3272071c3fc3121c418df25a43b445fcb6de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "test7.h"
#ifndef QQQ
#include "include1.h"
#else // QQQ
#include "include2.h"
#endif // QQQ
int function1()
{
return 0;
}
#ifdef QQQ
#include "include3.h"
#endif // QQQ
|