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