1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

* sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with

__USE_GNU.
This commit is contained in:
Ulrich Drepper
2006-08-08 18:29:16 +00:00
parent 2d1e6277e9
commit be7ffd91f8
2 changed files with 4 additions and 1 deletions

View File

@@ -43,9 +43,9 @@
#define O_SYNC 010000
#define O_FSYNC O_SYNC
#define O_ASYNC 020000
#define O_DIRECT 040000
#ifdef __USE_GNU
# define O_DIRECT 040000
# define O_DIRECTORY 0200000 /* must be a directory */
# define O_NOFOLLOW 0400000 /* don't follow links */
# define O_NOATIME 01000000 /* Do not set atime. */