Josh Gao | bf8a285 | 2016-05-27 11:59:09 -0700 | [diff] [blame^] | 1 | #if __ANDROID_API__ <= 9 |
2 | static int foo() __attribute__((availability(android, introduced = 9))) { | ||||
3 | return 0; | ||||
4 | } | ||||
5 | #else | ||||
6 | int foo() __attribute__((availability(android, introduced = 9))); | ||||
7 | #endif |