summaryrefslogtreecommitdiff
path: root/tools/ci/samples/test7.h
blob: a7aa34579d5583f21fb991bc9c7651541f4e1a42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TEST7
#define TEST7

int function1();

#ifndef QQQ
#include "include1.h"
#else  // QQQ
#include "include2.h"
#endif  // QQQ

#ifdef QQQ
#include "include3.h"
#endif  // QQQ

#endif  // TEST7