diff options
Diffstat (limited to 'libc/include/sys/stat.h')
-rw-r--r-- | libc/include/sys/stat.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/include/sys/stat.h b/libc/include/sys/stat.h index cc9dd9196..f961cf82e 100644 --- a/libc/include/sys/stat.h +++ b/libc/include/sys/stat.h @@ -169,7 +169,7 @@ __errordecl(__umask_invalid_mode, "umask called with invalid mode"); #if defined(__BIONIC_FORTIFY) -#if __ANDROID_API__ >= 18 +#if __ANDROID_API__ >= __ANDROID_API_J_MR2__ __BIONIC_FORTIFY_INLINE mode_t umask(mode_t mode) { #if !defined(__clang__) @@ -182,11 +182,11 @@ mode_t umask(mode_t mode) { #endif return __umask_chk(mode); } -#endif /* __ANDROID_API__ >= 18 */ +#endif /* __ANDROID_API__ >= __ANDROID_API_J_MR2__ */ #endif /* defined(__BIONIC_FORTIFY) */ -#if __ANDROID_API__ >= 21 +#if __ANDROID_API__ >= __ANDROID_API_L__ int mkfifo(const char*, mode_t) __INTRODUCED_IN(21); #else // Implemented as a static inline before 21. |