1 #if defined(__cplusplus) 2 extern "C" { 3 #endif 4 5 #if __ANDROID_API__ < 12 foo()6 static int foo() { 7 return 0; 8 } 9 #else 10 int foo() __INTRODUCED_IN(12); 11 #endif 12 13 #if defined(__cplusplus) 14 } 15 #endif 16