summaryrefslogtreecommitdiff
path: root/tools/versioner/tests/preprocessor_idempotence/expected/foo.h
blob: bc442e50e2107fbdfe71e298e9c37f20db01fccf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#if defined(__cplusplus)
extern "C" {
#endif

#if __ANDROID_API__ >= 10
int foo() __INTRODUCED_IN(10);
#endif

#if __ANDROID_API__ >= 21
int bar(int) __INTRODUCED_IN(21);
#endif

#if __ANDROID_API__ >= 10
int multiple_1() __INTRODUCED_IN(10);
int multiple_2() __INTRODUCED_IN(10);
#endif

#if defined(__cplusplus)
}
#endif