Gitiles
Code Review
Sign In
review.evervolv.com
/
android_bionic
/
4af829acb7bedbc2d08dfde0d099c658a1aa7567
/
.
/
tools
/
versioner
/
tests
/
version_mismatch
/
headers
/
foo.h
blob: 4d23417e2627f5fc506dd41d98422664a92d3741 [
file
] [
log
] [
blame
]
Josh Gao
4af829a
2016-06-03 13:46:06 -0700
[
diff
] [
blame^
]
1
#if __ANDROID_API__ <= 9
2
int
foo
()
__attribute__
((
availability
(
android
,
introduced
=
9
)));
3
#else
4
int
foo
()
__attribute__
((
availability
(
android
,
introduced
=
10
)));
5
#endif