summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-02-26 00:43:47 +0000
committerMiles Bader <miles@gnu.org>1997-02-26 00:43:47 +0000
commit867a8743a42f28c5a50de893c82db66ae215f69c (patch)
treed680e0f3ede4320b538bfc7d0bf466b8d1854623
parent2f6d1f1be920d156768f7fa17957c782c770ed36 (diff)
(O_NORW): New macro.cvs/libc-970226
-rw-r--r--sysdeps/mach/hurd/fcntlbits.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/fcntlbits.h b/sysdeps/mach/hurd/fcntlbits.h
index f18a85d5c7..efa7069107 100644
--- a/sysdeps/mach/hurd/fcntlbits.h
+++ b/sysdeps/mach/hurd/fcntlbits.h
@@ -1,5 +1,5 @@
/* O_*, F_*, FD_* bit values for GNU.
-Copyright (C) 1993, 1994, 1996 Free Software Foundation, Inc.
+Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -33,6 +33,7 @@ Cambridge, MA 02139, USA. */
#define O_READ O_RDONLY /* Open for reading. */
#define O_WRITE O_WRONLY /* Open for writing. */
#define O_EXEC 0x0004 /* Open for execution. */
+#define O_NORW 0 /* Open without R/W access. */
#endif
/* POSIX.1 standard names. */
#define O_RDONLY 0x0001 /* Open read-only. */