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