diff options
author | Dan Albert <danalbert@google.com> | 2015-01-28 18:16:08 -0800 |
---|---|---|
committer | Dan Albert <danalbert@google.com> | 2015-01-29 17:30:40 -0800 |
commit | 466dbe444446da0a8729ae9ac7294f54276e29d7 (patch) | |
tree | 6930e91366bb16c0b12197dbf9efd18b458d2eaf /libc/include/sys/cdefs.h | |
parent | 3780aba6352affc7d2dcdad0737cb4254448fcae (diff) | |
download | bionic-466dbe444446da0a8729ae9ac7294f54276e29d7.zip bionic-466dbe444446da0a8729ae9ac7294f54276e29d7.tar.gz bionic-466dbe444446da0a8729ae9ac7294f54276e29d7.tar.bz2 |
Put back inline definitions if using an old API.
All these inlines were turned in to out of line definitions in L.
This brings us a step closer to being able to just use the current
bionic headers for the NDK, rather than having many old versions of
them.
Change-Id: Ie010bc727d78d3742abc577c70f6578db2e68625
Diffstat (limited to 'libc/include/sys/cdefs.h')
-rw-r--r-- | libc/include/sys/cdefs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/include/sys/cdefs.h b/libc/include/sys/cdefs.h index 21d59fa..48763d7 100644 --- a/libc/include/sys/cdefs.h +++ b/libc/include/sys/cdefs.h @@ -556,4 +556,10 @@ /* Used to rename functions so that the compiler emits a call to 'x' rather than the function this was applied to. */ #define __RENAME(x) __asm__(#x) +#if __ANDROID_API__ >= 21 +#define _BIONIC_NOT_BEFORE_21(x) x +#else +#define _BIONIC_NOT_BEFORE_21(x) +#endif /* __ANDROID_API__ >= 21 */ + #endif /* !_SYS_CDEFS_H_ */ |