diff options
Diffstat (limited to 'libc/include/fcntl.h')
-rw-r--r-- | libc/include/fcntl.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libc/include/fcntl.h b/libc/include/fcntl.h index 77c92be7c..7ab720542 100644 --- a/libc/include/fcntl.h +++ b/libc/include/fcntl.h @@ -51,14 +51,6 @@ extern int creat(const char* path, mode_t mode); #if defined(__BIONIC_FORTIFY_INLINE) -# if !defined(__clang__) -/* - * Clang doesn't have support for __builtin_va_arg_pack() - * and __builtin_va_arg_pack_len() - * - * http://clang.llvm.org/docs/UsersManual.html#c_unimpl_gcc - */ - extern void __creat_error() __attribute__((__error__ ("called with O_CREAT, but missing mode"))); extern void __too_many_args_error() @@ -109,7 +101,6 @@ int openat(int dirfd, const char *pathname, int flags, ...) { return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack()); } -#endif /* !defined(__clang__) */ #endif /* defined(__BIONIC_FORTIFY_INLINE) */ __END_DECLS |