diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-05-03 16:33:26 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-05-03 16:33:26 -0700 |
commit | cc0e6ed81fa3ab0eeecfc576098b4522f0323c4b (patch) | |
tree | ef84d38f2a5bba357c20eb8c3a6135c2bb6746b8 /sysdeps/unix/sysv/linux/openat.c | |
parent | 60bfd54cbb0c51ab95c52a7438509373b848c957 (diff) | |
download | glibc-cc0e6ed81fa3ab0eeecfc576098b4522f0323c4b.tar.gz glibc-cc0e6ed81fa3ab0eeecfc576098b4522f0323c4b.tar.xz glibc-cc0e6ed81fa3ab0eeecfc576098b4522f0323c4b.zip |
Consolidate definitions of _FORTIFY_SOURCE wrappers for open{,64}{,at}.
Diffstat (limited to 'sysdeps/unix/sysv/linux/openat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/openat.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sysdeps/unix/sysv/linux/openat.c b/sysdeps/unix/sysv/linux/openat.c index d2ef429736..6e838dfd0c 100644 --- a/sysdeps/unix/sysv/linux/openat.c +++ b/sysdeps/unix/sysv/linux/openat.c @@ -29,7 +29,6 @@ #ifndef OPENAT # define OPENAT openat -# define __OPENAT_2 __openat_2 # ifndef __ASSUME_ATFCTS /* Set errno after a failed call. If BUF is not null, @@ -179,18 +178,3 @@ __OPENAT (fd, file, oflag) } libc_hidden_def (__OPENAT) weak_alias (__OPENAT, OPENAT) - - -int -__OPENAT_2 (fd, file, oflag) - int fd; - const char *file; - int oflag; -{ - if (oflag & O_CREAT) -#define MSG(s) MSG2 (s) -#define MSG2(s) "invalid " #s " call: O_CREAT without mode" - __fortify_fail (MSG (OPENAT)); - - return __OPENAT (fd, file, oflag); -} |