1 #define __RENAME(x) asm(#x) 2 3 #if defined(__cplusplus) 4 5 #if __ANDROID_API__ >= 24 6 extern "C++" const char* strchrnul(const char*, int) __RENAME(strchrnul) __INTRODUCED_IN(24); 7 #endif /* __ANDROID_API__ >= 24 */ 8 9 #endif 10 11 #if defined(__cplusplus) 12 extern "C" int foo(); 13 #endif 14 15 #if defined(__cplusplus) 16 extern "C" { 17 #endif 18 19 20 #if __ANDROID_API__ >= 24 21 char* strchrnul(char*, int) __INTRODUCED_IN(24); 22 #endif /* __ANDROID_API__ >= 24 */ 23 24 25 #if defined(__cplusplus) 26 } 27 #endif 28