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