(O_LARGEFILE, O_NOFOLLOW, O_DIRECT): New macros.
authorUlrich Drepper <drepper@redhat.com>
Fri, 23 Oct 1998 23:22:54 +0000 (23:22 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 23 Oct 1998 23:22:54 +0000 (23:22 +0000)
(O_DIRECTORY): Correct definition according to official 2.1.126.

sysdeps/unix/sysv/linux/mips/bits/fcntl.h

index 63e754d..a01dcae 100644 (file)
 #define O_ASYNC                0x1000
 
 #ifdef __USE_GNU
-# define O_DIRECTORY   0x2000  /* Must be a directory.  */
+# define O_LARGEFILE   0x2000  /* Allow large file opens.  */
+# define O_NOFOLLOW    0x4000  /* Do not follow links.  */
+# define O_DIRECT      0x8000  /* Direct disk access hint.  */
+# define O_DIRECTORY   0x10000 /* Must be a directory.  */
 #endif
 
 #define O_NDELAY       O_NONBLOCK