Files
2023-10-13 14:01:41 +00:00

14 lines
180 B
C

#if defined(__cplusplus)
extern "C" {
#endif
#if __ANDROID_API__ <= 9
int foo() __INTRODUCED_IN(9);
#else
int foo() __INTRODUCED_IN(10);
#endif
#if defined(__cplusplus)
}
#endif