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