blob: a337f9cd4992683b3c5b16043ae4db98b902913e [file] [log] [blame]
Josh Gao5317f2d2017-06-30 14:35:00 -07001#if defined(__cplusplus)
2extern "C" {
3#endif
4
Josh Gaobfb6bae2016-07-15 17:25:21 -07005#if __ANDROID_API__ < 12
6static int foo() {
Josh Gaobf8a2852016-05-27 11:59:09 -07007 return 0;
8}
9#else
Josh Gaobfb6bae2016-07-15 17:25:21 -070010int foo() __INTRODUCED_IN(12);
Josh Gaobf8a2852016-05-27 11:59:09 -070011#endif
Josh Gao5317f2d2017-06-30 14:35:00 -070012
13#if defined(__cplusplus)
14}
15#endif