summaryrefslogtreecommitdiff
path: root/tools/ci/samples/test8.h
blob: c35f6f65f86b963fcb0d28cd56d833ed722c9737 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef TEST8
#define TEST8

int function1();

#if !defined(ZZZ)
#ifndef QQQ
#include "include1.h"
#else  // QQQ
#include "include2.h"
#endif  // QQQ
#else  // !defined(ZZZ)
#include "include4.h"
#endif  // !defined(ZZZ)

#if defined(QQQ)
#include "include3.h"
#endif  // defined(QQQ)

#endif  // TEST8