1 /* Substitute for and wrapper around <unistd.h>.
2 Copyright (C) 2004-2007 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20 /* The include_next requires a split double-inclusion guard. */
22 # @INCLUDE_NEXT@ @NEXT_UNISTD_H@
28 /* mingw doesn't define the SEEK_* macros in <unistd.h>. */
29 #if !(defined SEEK_CUR && defined SEEK_END && defined SEEK_SET)
33 /* mingw fails to declare _exit in <unistd.h>. */
36 /* The definition of GL_LINK_WARNING is copied here. */
39 /* Declare overridden functions. */
48 # ifndef REPLACE_CHOWN
49 # define REPLACE_CHOWN 1
52 /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE
53 to GID (if GID is not -1). Follow symbolic links.
54 Return 0 if successful, otherwise -1 and errno set.
55 See the POSIX:2001 specification
56 <http://www.opengroup.org/susv3xsh/chown.html>. */
57 # define chown rpl_chown
58 extern int chown (const char *file
, uid_t uid
, gid_t gid
);
61 #elif defined GNULIB_POSIXCHECK
63 # define chown(f,u,g) \
64 (GL_LINK_WARNING ("chown fails to follow symlinks on some systems and " \
65 "doesn't treat a uid or gid of -1 on some systems - " \
66 "use gnulib module chown for portability"), \
73 /* Copy the file descriptor OLDFD into file descriptor NEWFD. Do nothing if
74 NEWFD = OLDFD, otherwise close NEWFD first if it is open.
75 Return 0 if successful, otherwise -1 and errno set.
76 See the POSIX:2001 specification
77 <http://www.opengroup.org/susv3xsh/dup2.html>. */
78 extern int dup2 (int oldfd
, int newfd
);
80 #elif defined GNULIB_POSIXCHECK
83 (GL_LINK_WARNING ("dup2 is unportable - " \
84 "use gnulib module dup2 for portability"), \
92 /* Change the process' current working directory to the directory on which
93 the given file descriptor is open.
94 Return 0 if successful, otherwise -1 and errno set.
95 See the POSIX:2001 specification
96 <http://www.opengroup.org/susv3xsh/fchdir.html>. */
97 extern int fchdir (int /*fd*/);
99 # define close rpl_close
100 extern int close (int);
102 extern int dup (int);
103 # define dup2 rpl_dup2
104 extern int dup2 (int, int);
107 #elif defined GNULIB_POSIXCHECK
110 (GL_LINK_WARNING ("fchdir is unportable - " \
111 "use gnulib module fchdir for portability"), \
116 #if @GNULIB_FTRUNCATE@
117 # if !@HAVE_FTRUNCATE@
118 /* Change the size of the file to which FD is opened to become equal to LENGTH.
119 Return 0 if successful, otherwise -1 and errno set.
120 See the POSIX:2001 specification
121 <http://www.opengroup.org/susv3xsh/ftruncate.html>. */
122 extern int ftruncate (int fd
, off_t length
);
124 #elif defined GNULIB_POSIXCHECK
126 # define ftruncate(f,l) \
127 (GL_LINK_WARNING ("ftruncate is unportable - " \
128 "use gnulib module ftruncate for portability"), \
134 /* Include the headers that might declare getcwd so that they will not
135 cause confusion if included after this file. */
137 # if @REPLACE_GETCWD@
138 /* Get the name of the current working directory, and put it in SIZE bytes
140 Return BUF if successful, or NULL if the directory couldn't be determined
141 or SIZE was too small.
142 See the POSIX:2001 specification
143 <http://www.opengroup.org/susv3xsh/getcwd.html>.
144 Additionally, the gnulib module 'getcwd' guarantees the following GNU
145 extension: If BUF is NULL, an array is allocated with 'malloc'; the array
146 is SIZE bytes long, unless SIZE == 0, in which case it is as big as
148 # define getcwd rpl_getcwd
149 extern char * getcwd (char *buf
, size_t size
);
151 #elif defined GNULIB_POSIXCHECK
153 # define getcwd(b,s) \
154 (GL_LINK_WARNING ("getcwd is unportable - " \
155 "use gnulib module getcwd for portability"), \
160 #if @GNULIB_GETLOGIN_R@
161 /* Copies the user's login name to NAME.
162 The array pointed to by NAME has room for SIZE bytes.
164 Returns 0 if successful. Upon error, an error number is returned, or -1 in
165 the case that the login name cannot be found but no specific error is
166 provided (this case is hopefully rare but is left open by the POSIX spec).
168 See <http://www.opengroup.org/susv3xsh/getlogin.html>.
170 # if !@HAVE_DECL_GETLOGIN_R@
172 extern int getlogin_r (char *name
, size_t size
);
174 #elif defined GNULIB_POSIXCHECK
176 # define getlogin_r(n,s) \
177 (GL_LINK_WARNING ("getlogin_r is unportable - " \
178 "use gnulib module getlogin_r for portability"), \
184 # if @REPLACE_LCHOWN@
185 /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE
186 to GID (if GID is not -1). Do not follow symbolic links.
187 Return 0 if successful, otherwise -1 and errno set.
188 See the POSIX:2001 specification
189 <http://www.opengroup.org/susv3xsh/lchown.html>. */
190 # define lchown rpl_lchown
191 extern int lchown (char const *file
, uid_t owner
, gid_t group
);
193 #elif defined GNULIB_POSIXCHECK
195 # define lchown(f,u,g) \
196 (GL_LINK_WARNING ("lchown is unportable to pre-POSIX.1-2001 " \
197 "systems - use gnulib module lchown for portability"), \
204 /* Set the offset of FD relative to SEEK_SET, SEEK_CUR, or SEEK_END.
205 Return the new offset if successful, otherwise -1 and errno set.
206 See the POSIX:2001 specification
207 <http://www.opengroup.org/susv3xsh/lseek.html>. */
208 # define lseek rpl_lseek
209 extern off_t
lseek (int fd
, off_t offset
, int whence
);
211 #elif defined GNULIB_POSIXCHECK
213 # define lseek(f,o,w) \
214 (GL_LINK_WARNING ("lseek does not fail with ESPIPE on pipes on some " \
215 "systems - use gnulib module lseek for portability"), \
220 #if @GNULIB_READLINK@
221 /* Read the contents of the symbolic link FILE and place the first BUFSIZE
222 bytes of it into BUF. Return the number of bytes placed into BUF if
223 successful, otherwise -1 and errno set.
224 See the POSIX:2001 specification
225 <http://www.opengroup.org/susv3xsh/readlink.html>. */
226 # if !@HAVE_READLINK@
228 extern int readlink (const char *file
, char *buf
, size_t bufsize
);
230 #elif defined GNULIB_POSIXCHECK
232 # define readlink(f,b,s) \
233 (GL_LINK_WARNING ("readlink is unportable - " \
234 "use gnulib module readlink for portability"), \
240 /* Pause the execution of the current thread for N seconds.
241 Returns the number of seconds left to sleep.
242 See the POSIX:2001 specification
243 <http://www.opengroup.org/susv3xsh/sleep.html>. */
245 extern unsigned int sleep (unsigned int n
);
247 #elif defined GNULIB_POSIXCHECK
250 (GL_LINK_WARNING ("sleep is unportable - " \
251 "use gnulib module sleep for portability"), \
261 #endif /* _GL_UNISTD_H */
262 #endif /* _GL_UNISTD_H */