diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-07-09 17:20:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-07-09 17:20:48 +0000 |
commit | d199bfb22296dbb3f0a17bfdde719a14da406ff1 (patch) | |
tree | 4b7385858315b23dff538bae553fafe1ce8e50c2 /sysdeps/unix/sysv/linux/fcntl.c | |
parent | 1b8cbd0847c4cbd319a8b3b706269a401940e2c4 (diff) | |
download | glibc-d199bfb22296dbb3f0a17bfdde719a14da406ff1.tar.gz glibc-d199bfb22296dbb3f0a17bfdde719a14da406ff1.tar.xz glibc-d199bfb22296dbb3f0a17bfdde719a14da406ff1.zip |
Update.
2004-07-09 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Move attribute to the front for gcc 3.5+. * sysdeps/unix/sysv/linux/i386/fcntl.c: Likewise. * sysdeps/unix/sysv/linux/powerpc/powerpc64/fcntl.c: Likewise. * include/fcntl.h: Don't declare __fcntl_nocancel here if NO_CANCELLATION is defined.
Diffstat (limited to 'sysdeps/unix/sysv/linux/fcntl.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/fcntl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/fcntl.c b/sysdeps/unix/sysv/linux/fcntl.c index ab8d9cfb9c..87fa2ffe31 100644 --- a/sysdeps/unix/sysv/linux/fcntl.c +++ b/sysdeps/unix/sysv/linux/fcntl.c @@ -18,17 +18,17 @@ #include <assert.h> #include <errno.h> +#include <sysdep-cancel.h> /* Must come before <fcntl.h>. */ #include <fcntl.h> #include <stdarg.h> -#include <sysdep-cancel.h> #include <sys/syscall.h> -int #ifdef NO_CANCELLATION static inline __attribute ((always_inline)) #endif +int __fcntl_nocancel (int fd, int cmd, ...) { va_list ap; |