ignore-value: handle pointer types, too
[gnulib.git] / lib / fcntl.in.h
1 /* Like <fcntl.h>, but with non-working flags defined to 0.
2
3    Copyright (C) 2006-2009 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* written by Paul Eggert */
19
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23
24 #if defined __need_system_fcntl_h
25 /* Special invocation convention.  */
26
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
31
32 #else
33 /* Normal invocation convention.  */
34
35 #ifndef _GL_FCNTL_H
36
37 #include <sys/types.h>
38 #include <sys/stat.h>
39 #include <unistd.h>
40 /* The include_next requires a split double-inclusion guard.  */
41 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
42
43 #ifndef _GL_FCNTL_H
44 #define _GL_FCNTL_H
45
46
47 /* Declare overridden functions.  */
48
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52
53 #if @GNULIB_OPEN@
54 # if @REPLACE_OPEN@
55 #  undef open
56 #  define open rpl_open
57 extern int open (const char *filename, int flags, ...);
58 # endif
59 #endif
60
61 #ifdef FCHDIR_REPLACEMENT
62 /* gnulib internal function.  */
63 extern void _gl_register_fd (int fd, const char *filename);
64 #endif
65
66 #ifdef __cplusplus
67 }
68 #endif
69
70 /* Fix up the FD_* macros.  */
71
72 #ifndef FD_CLOEXEC
73 # define FD_CLOEXEC 1
74 #endif
75
76 /* Fix up the O_* macros.  */
77
78 #if !defined O_DIRECT && defined O_DIRECTIO
79 /* Tru64 spells it `O_DIRECTIO'.  */
80 # define O_DIRECT O_DIRECTIO
81 #endif
82
83 #if !defined O_CLOEXEC && defined O_NOINHERIT
84 /* Mingw spells it `O_NOINHERIT'.  Intentionally leave it
85    undefined if not available.  */
86 # define O_CLOEXEC O_NOINHERIT
87 #endif
88
89 #ifndef O_DIRECT
90 # define O_DIRECT 0
91 #endif
92
93 #ifndef O_DIRECTORY
94 # define O_DIRECTORY 0
95 #endif
96
97 #ifndef O_DSYNC
98 # define O_DSYNC 0
99 #endif
100
101 #ifndef O_NDELAY
102 # define O_NDELAY 0
103 #endif
104
105 #ifndef O_NOATIME
106 # define O_NOATIME 0
107 #endif
108
109 #ifndef O_NONBLOCK
110 # define O_NONBLOCK O_NDELAY
111 #endif
112
113 #ifndef O_NOCTTY
114 # define O_NOCTTY 0
115 #endif
116
117 #ifndef O_NOFOLLOW
118 # define O_NOFOLLOW 0
119 #endif
120
121 #ifndef O_NOLINKS
122 # define O_NOLINKS 0
123 #endif
124
125 #ifndef O_RSYNC
126 # define O_RSYNC 0
127 #endif
128
129 #ifndef O_SYNC
130 # define O_SYNC 0
131 #endif
132
133 #ifndef O_TTY_INIT
134 # define O_TTY_INIT 0
135 #endif
136
137 /* For systems that distinguish between text and binary I/O.
138    O_BINARY is usually declared in fcntl.h  */
139 #if !defined O_BINARY && defined _O_BINARY
140   /* For MSC-compatible compilers.  */
141 # define O_BINARY _O_BINARY
142 # define O_TEXT _O_TEXT
143 #endif
144
145 #if defined __BEOS__ || defined __HAIKU__
146   /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect.  */
147 # undef O_BINARY
148 # undef O_TEXT
149 #endif
150
151 #ifndef O_BINARY
152 # define O_BINARY 0
153 # define O_TEXT 0
154 #endif
155
156
157 #endif /* _GL_FCNTL_H */
158 #endif /* _GL_FCNTL_H */
159 #endif