diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/bits/fcntl.h | 10 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sparc/bits/fcntl.h | 11 |
2 files changed, 8 insertions, 13 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/bits/fcntl.h b/sysdeps/unix/sysv/linux/s390/bits/fcntl.h index 6f53fbc..ecf1baf 100644 --- a/sysdeps/unix/sysv/linux/s390/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/s390/bits/fcntl.h @@ -22,13 +22,11 @@ #include <bits/wordsize.h> -#ifdef __USE_LARGEFILE64 -# if __WORDSIZE == 64 +#if __WORDSIZE == 64 /* Not necessary, files are always with 64bit off_t. */ -# define __O_LARGEFILE 0 -# else -# define __O_LARGEFILE 0100000 -# endif +# define __O_LARGEFILE 0 +#else +# define __O_LARGEFILE 0100000 #endif /* Values for the second argument to `fcntl'. */ diff --git a/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h b/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h index b8496a9..0f4bf76 100644 --- a/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/sparc/bits/fcntl.h @@ -39,14 +39,11 @@ #define __O_DIRECT 0x100000 /* direct disk access hint */ #define __O_NOATIME 0x200000 /* Do not set atime. */ #define __O_PATH 0x1000000 /* Resolve pathname but do not open file. */ -#endif -#ifdef __USE_LARGEFILE64 -# if __WORDSIZE == 64 -# define __O_LARGEFILE 0 -# else -# define __O_LARGEFILE 0x40000 -# endif +#if __WORDSIZE == 64 +# define __O_LARGEFILE 0 +#else +# define __O_LARGEFILE 0x40000 #endif #define __O_DSYNC 0x2000 /* Synchronize data. */ |