summaryrefslogtreecommitdiff
path: root/tools/versioner/tests/inline/headers/foo.h
blob: a337f9cd4992683b3c5b16043ae4db98b902913e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if defined(__cplusplus)
extern "C" {
#endif

#if __ANDROID_API__ < 12
static int foo() {
  return 0;
}
#else
int foo() __INTRODUCED_IN(12);
#endif

#if defined(__cplusplus)
}
#endif