Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_bionic
/
681f6b59d26c7c9470bc681b0ca0b43c3d0835db
/
.
/
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