diff options
author | Jakub Jelinek <jakub@redhat.com> | 2006-08-22 09:05:41 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2006-08-22 09:05:41 +0000 |
commit | 4728cb644861ff8c58586702bf6815c50a1c0dd2 (patch) | |
tree | 305ac8dc2d7c6eaf501ebe90d90cc174c8ae7e25 /sysdeps/unix | |
parent | ab3017a58b517cb20feb6e6688b9cb1948c00156 (diff) | |
download | glibc-4728cb644861ff8c58586702bf6815c50a1c0dd2.tar glibc-4728cb644861ff8c58586702bf6815c50a1c0dd2.tar.gz glibc-4728cb644861ff8c58586702bf6815c50a1c0dd2.tar.bz2 glibc-4728cb644861ff8c58586702bf6815c50a1c0dd2.zip |
Updated to fedora-glibc-20060822T0706cvs/fedora-glibc-2_4_90-23
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/openat.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/openat.c b/sysdeps/unix/sysv/linux/openat.c index 7dfe367425..df53b6cf2c 100644 --- a/sysdeps/unix/sysv/linux/openat.c +++ b/sysdeps/unix/sysv/linux/openat.c @@ -28,9 +28,10 @@ #include <not-cancel.h> -#if !defined OPENAT && !defined __ASSUME_ATFCTS +#ifndef OPENAT # define OPENAT openat +# ifndef __ASSUME_ATFCTS /* Set errno after a failed call. If BUF is not null, it is a /proc/self/fd/ path name we just tried to use. */ void @@ -61,6 +62,7 @@ __atfct_seterrno (int errval, int fd, const char *buf) } int __have_atfcts; +# endif #endif |