diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/bits/fcntl.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/bits/fcntl.h b/sysdeps/unix/sysv/linux/s390/bits/fcntl.h index 6f53fbc0b5..ecf1baf8b9 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'. */ |