diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-04-10 02:51:29 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-04-10 02:51:29 +0000 |
commit | e9b4d069c1897d1480655dc6f25e905b1ce749a6 (patch) | |
tree | c02171e242e9a0b11e3c3da6b30fd98ec587f59c /sysdeps/unix/sysv | |
parent | 24030b0f789a2b6e2429c6158cf57d59518bcf36 (diff) | |
download | glibc-e9b4d069c1897d1480655dc6f25e905b1ce749a6.tar.gz |
* stdio-common/vfprintf.c (vfprintf): Slightly more compact code.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/preadv.c | 6 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/pwritev.c | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/sysdeps/unix/sysv/linux/preadv.c b/sysdeps/unix/sysv/linux/preadv.c index 8c89d9200e..0d4a6c3803 100644 --- a/sysdeps/unix/sysv/linux/preadv.c +++ b/sysdeps/unix/sysv/linux/preadv.c @@ -29,12 +29,6 @@ #include <sys/syscall.h> #include <kernel-features.h> -#ifdef __x86_64__ -#define __NR_preadv 295 -#elif defined __i386__ -#define __NR_preadv 333 -#endif - #ifndef PREADV # define PREADV preadv diff --git a/sysdeps/unix/sysv/linux/pwritev.c b/sysdeps/unix/sysv/linux/pwritev.c index 1916abe485..5c30eae51f 100644 --- a/sysdeps/unix/sysv/linux/pwritev.c +++ b/sysdeps/unix/sysv/linux/pwritev.c @@ -29,12 +29,6 @@ #include <sys/syscall.h> #include <kernel-features.h> -#ifdef __x86_64__ -#define __NR_pwritev 296 -#elif defined __i386__ -#define __NR_pwritev 334 -#endif - #ifndef PWRITEV # define PWRITEV pwritev |