blob: a337f9cd4992683b3c5b16043ae4db98b902913e [file] [log] [blame]
#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