fdopendir: fix a bug on systems lacking openat and /proc support
[pspp] / lib / fcntl.in.h
1 /* Like <fcntl.h>, but with non-working flags defined to 0.
2
3    Copyright (C) 2006-2010 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 @PRAGMA_COLUMNS@
24
25 #if defined __need_system_fcntl_h
26 /* Special invocation convention.  */
27
28 #include <sys/types.h>
29 #ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems.  */
30 # include <sys/stat.h>
31 #endif
32 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
33
34 #else
35 /* Normal invocation convention.  */
36
37 #ifndef _GL_FCNTL_H
38
39 #include <sys/types.h>
40 #ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems.  */
41 # include <sys/stat.h>
42 #endif
43 /* The include_next requires a split double-inclusion guard.  */
44 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@
45
46 #ifndef _GL_FCNTL_H
47 #define _GL_FCNTL_H
48
49 #ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems.  */
50 # include <unistd.h>
51 #endif
52
53
54 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
55
56 /* The definition of _GL_ARG_NONNULL is copied here.  */
57
58 /* The definition of _GL_WARN_ON_USE is copied here.  */
59
60
61 /* Declare overridden functions.  */
62
63 #if @GNULIB_FCNTL@
64 # if @REPLACE_FCNTL@
65 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
66 #   undef fcntl
67 #   define fcntl rpl_fcntl
68 #  endif
69 _GL_FUNCDECL_RPL (fcntl, int, (int fd, int action, ...));
70 _GL_CXXALIAS_RPL (fcntl, int, (int fd, int action, ...));
71 # else
72 #  if !@HAVE_FCNTL@
73 _GL_FUNCDECL_SYS (fcntl, int, (int fd, int action, ...));
74 #  endif
75 _GL_CXXALIAS_SYS (fcntl, int, (int fd, int action, ...));
76 # endif
77 _GL_CXXALIASWARN (fcntl);
78 #elif defined GNULIB_POSIXCHECK
79 # undef fcntl
80 # if HAVE_RAW_DECL_FCNTL
81 _GL_WARN_ON_USE (fcntl, "fcntl is not always POSIX compliant - "
82                  "use gnulib module fcntl for portability");
83 # endif
84 #endif
85
86 #if @GNULIB_OPEN@
87 # if @REPLACE_OPEN@
88 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
89 #   undef open
90 #   define open rpl_open
91 #  endif
92 _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...)
93                              _GL_ARG_NONNULL ((1)));
94 _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...));
95 # else
96 _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...));
97 # endif
98 _GL_CXXALIASWARN (open);
99 #elif defined GNULIB_POSIXCHECK
100 # undef open
101 /* Assume open is always declared.  */
102 _GL_WARN_ON_USE (open, "open is not always POSIX compliant - "
103                  "use gnulib module open for portability");
104 #endif
105
106 #if @GNULIB_OPENAT@
107 # if @REPLACE_OPENAT@
108 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
109 #   undef openat
110 #   define openat rpl_openat
111 #  endif
112 _GL_FUNCDECL_RPL (openat, int,
113                   (int fd, char const *file, int flags, /* mode_t mode */ ...)
114                   _GL_ARG_NONNULL ((2)));
115 _GL_CXXALIAS_RPL (openat, int,
116                   (int fd, char const *file, int flags, /* mode_t mode */ ...));
117 # else
118 #  if !@HAVE_OPENAT@
119 _GL_FUNCDECL_SYS (openat, int,
120                   (int fd, char const *file, int flags, /* mode_t mode */ ...)
121                   _GL_ARG_NONNULL ((2)));
122 #  endif
123 _GL_CXXALIAS_SYS (openat, int,
124                   (int fd, char const *file, int flags, /* mode_t mode */ ...));
125 # endif
126 _GL_CXXALIASWARN (openat);
127 #elif defined GNULIB_POSIXCHECK
128 # undef openat
129 # if HAVE_RAW_DECL_OPENAT
130 _GL_WARN_ON_USE (openat, "openat is not portable - "
131                  "use gnulib module openat for portability");
132 # endif
133 #endif
134
135
136 /* Fix up the FD_* macros, only known to be missing on mingw.  */
137
138 #ifndef FD_CLOEXEC
139 # define FD_CLOEXEC 1
140 #endif
141
142 /* Fix up the supported F_* macros.  Intentionally leave other F_*
143    macros undefined.  Only known to be missing on mingw.  */
144
145 #ifndef F_DUPFD_CLOEXEC
146 # define F_DUPFD_CLOEXEC 0x40000000
147 /* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise.  */
148 # define GNULIB_defined_F_DUPFD_CLOEXEC 1
149 #else
150 # define GNULIB_defined_F_DUPFD_CLOEXEC 0
151 #endif
152
153 #ifndef F_DUPFD
154 # define F_DUPFD 1
155 #endif
156
157 #ifndef F_GETFD
158 # define F_GETFD 2
159 #endif
160
161 /* Fix up the O_* macros.  */
162
163 #if !defined O_DIRECT && defined O_DIRECTIO
164 /* Tru64 spells it `O_DIRECTIO'.  */
165 # define O_DIRECT O_DIRECTIO
166 #endif
167
168 #if !defined O_CLOEXEC && defined O_NOINHERIT
169 /* Mingw spells it `O_NOINHERIT'.  Intentionally leave it
170    undefined if not available.  */
171 # define O_CLOEXEC O_NOINHERIT
172 #endif
173
174 #ifndef O_CLOEXEC
175 # define O_CLOEXEC 0
176 #endif
177
178 #ifndef O_DIRECT
179 # define O_DIRECT 0
180 #endif
181
182 #ifndef O_DIRECTORY
183 # define O_DIRECTORY 0
184 #endif
185
186 #ifndef O_DSYNC
187 # define O_DSYNC 0
188 #endif
189
190 #ifndef O_EXEC
191 # define O_EXEC O_RDONLY /* This is often close enough in older systems.  */
192 #endif
193
194 #ifndef O_NDELAY
195 # define O_NDELAY 0
196 #endif
197
198 #ifndef O_NOATIME
199 # define O_NOATIME 0
200 #endif
201
202 #ifndef O_NONBLOCK
203 # define O_NONBLOCK O_NDELAY
204 #endif
205
206 #ifndef O_NOCTTY
207 # define O_NOCTTY 0
208 #endif
209
210 #ifndef O_NOFOLLOW
211 # define O_NOFOLLOW 0
212 #endif
213
214 #ifndef O_NOLINKS
215 # define O_NOLINKS 0
216 #endif
217
218 #ifndef O_RSYNC
219 # define O_RSYNC 0
220 #endif
221
222 #ifndef O_SEARCH
223 # define O_SEARCH O_RDONLY /* This is often close enough in older systems.  */
224 #endif
225
226 #ifndef O_SYNC
227 # define O_SYNC 0
228 #endif
229
230 #ifndef O_TTY_INIT
231 # define O_TTY_INIT 0
232 #endif
233
234 /* For systems that distinguish between text and binary I/O.
235    O_BINARY is usually declared in fcntl.h  */
236 #if !defined O_BINARY && defined _O_BINARY
237   /* For MSC-compatible compilers.  */
238 # define O_BINARY _O_BINARY
239 # define O_TEXT _O_TEXT
240 #endif
241
242 #if defined __BEOS__ || defined __HAIKU__
243   /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect.  */
244 # undef O_BINARY
245 # undef O_TEXT
246 #endif
247
248 #ifndef O_BINARY
249 # define O_BINARY 0
250 # define O_TEXT 0
251 #endif
252
253 /* Fix up the AT_* macros.  */
254
255 /* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive.  Its
256    value exceeds INT_MAX, so its use as an int doesn't conform to the
257    C standard, and GCC and Sun C complain in some cases.  If the bug
258    is present, undef AT_FDCWD here, so it can be redefined below.  */
259 #if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553
260 # undef AT_FDCWD
261 #endif
262
263 /* Use the same bit pattern as Solaris 9, but with the proper
264    signedness.  The bit pattern is important, in case this actually is
265    Solaris with the above workaround.  */
266 #ifndef AT_FDCWD
267 # define AT_FDCWD (-3041965)
268 #endif
269
270 /* Use the same values as Solaris 9.  This shouldn't matter, but
271    there's no real reason to differ.  */
272 #ifndef AT_SYMLINK_NOFOLLOW
273 # define AT_SYMLINK_NOFOLLOW 4096
274 #endif
275
276 #ifndef AT_REMOVEDIR
277 # define AT_REMOVEDIR 1
278 #endif
279
280 /* Solaris 9 lacks these two, so just pick unique values.  */
281 #ifndef AT_SYMLINK_FOLLOW
282 # define AT_SYMLINK_FOLLOW 2
283 #endif
284
285 #ifndef AT_EACCESS
286 # define AT_EACCESS 4
287 #endif
288
289
290 #endif /* _GL_FCNTL_H */
291 #endif /* _GL_FCNTL_H */
292 #endif