diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2016-03-23 23:35:08 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2016-03-23 23:35:08 +0100 |
commit | 16d94f67e56c8dfd4fcac45ec0380d8b1ba6b2af (patch) | |
tree | ff3bb3ed3a4d87dabc606a528c704b1f16a4d426 /sysdeps/unix | |
parent | 7a25d6a84df9fea56963569ceccaaf7c2a88f161 (diff) | |
download | glibc-16d94f67e56c8dfd4fcac45ec0380d8b1ba6b2af.tar.gz glibc-16d94f67e56c8dfd4fcac45ec0380d8b1ba6b2af.tar.xz glibc-16d94f67e56c8dfd4fcac45ec0380d8b1ba6b2af.zip |
Assume __NR_openat is always defined
With the 2.6.32 minimum kernel on x86 and 3.2 on other architectures, __NR_openat is always defined. Changelog: * sysdeps/unix/sysv/linux/dl-openat64.c (openat64) [__NR_openat]: Make code unconditional.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/dl-openat64.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/dl-openat64.c b/sysdeps/unix/sysv/linux/dl-openat64.c index 1138779174..75c2439a3d 100644 --- a/sysdeps/unix/sysv/linux/dl-openat64.c +++ b/sysdeps/unix/sysv/linux/dl-openat64.c @@ -27,9 +27,5 @@ openat64 (int dfd, const char *file, int oflag, ...) { assert (!__OPEN_NEEDS_MODE (oflag)); -#ifdef __NR_openat return INLINE_SYSCALL (openat, 3, dfd, file, oflag | O_LARGEFILE); -#else - return INLINE_SYSCALL_ERROR_RETURN_VALUE (ENOSYS); -#endif } |