]> sjero.net Git - wget/blob - lib/unistd.in.h
Check for idna.h in /usr/include/idn.
[wget] / lib / unistd.in.h
1 /* Substitute for and wrapper around <unistd.h>.
2    Copyright (C) 2003-2009 Free Software Foundation, Inc.
3
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 3, or (at your option)
7    any later version.
8
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.
13
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.  */
17
18 #ifndef _GL_UNISTD_H
19
20 #if __GNUC__ >= 3
21 @PRAGMA_SYSTEM_HEADER@
22 #endif
23
24 /* The include_next requires a split double-inclusion guard.  */
25 #if @HAVE_UNISTD_H@
26 # @INCLUDE_NEXT@ @NEXT_UNISTD_H@
27 #endif
28
29 #ifndef _GL_UNISTD_H
30 #define _GL_UNISTD_H
31
32 /* NetBSD 5.0 mis-defines NULL.  Also get size_t.  */
33 #include <stddef.h>
34
35 /* mingw doesn't define the SEEK_* or *_FILENO macros in <unistd.h>.  */
36 #if !(defined SEEK_CUR && defined SEEK_END && defined SEEK_SET)
37 # include <stdio.h>
38 #endif
39
40 /* mingw fails to declare _exit in <unistd.h>.  */
41 /* mingw, BeOS, Haiku declare environ in <stdlib.h>, not in <unistd.h>.  */
42 #include <stdlib.h>
43
44 #if @GNULIB_WRITE@ && @REPLACE_WRITE@ && @GNULIB_UNISTD_H_SIGPIPE@
45 /* Get ssize_t.  */
46 # include <sys/types.h>
47 #endif
48
49 /* Get getopt(), optarg, optind, opterr, optopt.  */
50 #if @GNULIB_UNISTD_H_GETOPT@
51 # include <getopt.h>
52 #endif
53
54 #if @GNULIB_GETHOSTNAME@
55 /* Get all possible declarations of gethostname().  */
56 # if @UNISTD_H_HAVE_WINSOCK2_H@
57 #  include <winsock2.h>
58 #  if !defined _GL_SYS_SOCKET_H
59 #   undef socket
60 #   define socket               socket_used_without_including_sys_socket_h
61 #   undef connect
62 #   define connect              connect_used_without_including_sys_socket_h
63 #   undef accept
64 #   define accept               accept_used_without_including_sys_socket_h
65 #   undef bind
66 #   define bind                 bind_used_without_including_sys_socket_h
67 #   undef getpeername
68 #   define getpeername          getpeername_used_without_including_sys_socket_h
69 #   undef getsockname
70 #   define getsockname          getsockname_used_without_including_sys_socket_h
71 #   undef getsockopt
72 #   define getsockopt           getsockopt_used_without_including_sys_socket_h
73 #   undef listen
74 #   define listen               listen_used_without_including_sys_socket_h
75 #   undef recv
76 #   define recv                 recv_used_without_including_sys_socket_h
77 #   undef send
78 #   define send                 send_used_without_including_sys_socket_h
79 #   undef recvfrom
80 #   define recvfrom             recvfrom_used_without_including_sys_socket_h
81 #   undef sendto
82 #   define sendto               sendto_used_without_including_sys_socket_h
83 #   undef setsockopt
84 #   define setsockopt           setsockopt_used_without_including_sys_socket_h
85 #   undef shutdown
86 #   define shutdown             shutdown_used_without_including_sys_socket_h
87 #  endif
88 #  if !defined _GL_SYS_SELECT_H
89 #   undef select
90 #   define select               select_used_without_including_sys_select_h
91 #  endif
92 # endif
93 #endif
94
95 /* The definition of GL_LINK_WARNING is copied here.  */
96
97
98 /* OS/2 EMX lacks these macros.  */
99 #ifndef STDIN_FILENO
100 # define STDIN_FILENO 0
101 #endif
102 #ifndef STDOUT_FILENO
103 # define STDOUT_FILENO 1
104 #endif
105 #ifndef STDERR_FILENO
106 # define STDERR_FILENO 2
107 #endif
108
109 /* Declare overridden functions.  */
110
111 #ifdef __cplusplus
112 extern "C" {
113 #endif
114
115
116 #if @GNULIB_CHOWN@
117 # if @REPLACE_CHOWN@
118 #  ifndef REPLACE_CHOWN
119 #   define REPLACE_CHOWN 1
120 #  endif
121 #  if REPLACE_CHOWN
122 /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE
123    to GID (if GID is not -1).  Follow symbolic links.
124    Return 0 if successful, otherwise -1 and errno set.
125    See the POSIX:2001 specification
126    <http://www.opengroup.org/susv3xsh/chown.html>.  */
127 #   define chown rpl_chown
128 extern int chown (const char *file, uid_t uid, gid_t gid);
129 #  endif
130 # endif
131 #elif defined GNULIB_POSIXCHECK
132 # undef chown
133 # define chown(f,u,g) \
134     (GL_LINK_WARNING ("chown fails to follow symlinks on some systems and " \
135                       "doesn't treat a uid or gid of -1 on some systems - " \
136                       "use gnulib module chown for portability"), \
137      chown (f, u, g))
138 #endif
139
140
141 #if @GNULIB_CLOSE@
142 # if @REPLACE_CLOSE@
143 /* Automatically included by modules that need a replacement for close.  */
144 #  undef close
145 #  define close rpl_close
146 extern int close (int);
147 # endif
148 #elif @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@
149 # undef close
150 # define close close_used_without_requesting_gnulib_module_close
151 #elif defined GNULIB_POSIXCHECK
152 # undef close
153 # define close(f) \
154     (GL_LINK_WARNING ("close does not portably work on sockets - " \
155                       "use gnulib module close for portability"), \
156      close (f))
157 #endif
158
159
160 #if @GNULIB_DUP2@
161 # if @REPLACE_DUP2@
162 #  define dup2 rpl_dup2
163 # endif
164 # if !@HAVE_DUP2@ || @REPLACE_DUP2@
165 /* Copy the file descriptor OLDFD into file descriptor NEWFD.  Do nothing if
166    NEWFD = OLDFD, otherwise close NEWFD first if it is open.
167    Return newfd if successful, otherwise -1 and errno set.
168    See the POSIX:2001 specification
169    <http://www.opengroup.org/susv3xsh/dup2.html>.  */
170 extern int dup2 (int oldfd, int newfd);
171 # endif
172 #elif defined GNULIB_POSIXCHECK
173 # undef dup2
174 # define dup2(o,n) \
175     (GL_LINK_WARNING ("dup2 is unportable - " \
176                       "use gnulib module dup2 for portability"), \
177      dup2 (o, n))
178 #endif
179
180
181 #if @GNULIB_DUP3@
182 /* Copy the file descriptor OLDFD into file descriptor NEWFD, with the
183    specified flags.
184    The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)
185    and O_TEXT, O_BINARY (defined in "binary-io.h").
186    Close NEWFD first if it is open.
187    Return newfd if successful, otherwise -1 and errno set.
188    See the Linux man page at
189    <http://www.kernel.org/doc/man-pages/online/pages/man2/dup3.2.html>.  */
190 # if @HAVE_DUP3@
191 #  define dup3 rpl_dup3
192 # endif
193 extern int dup3 (int oldfd, int newfd, int flags);
194 #elif defined GNULIB_POSIXCHECK
195 # undef dup3
196 # define dup3(o,n,f) \
197     (GL_LINK_WARNING ("dup3 is unportable - " \
198                       "use gnulib module dup3 for portability"), \
199      dup3 (o, n, f))
200 #endif
201
202
203 #if @GNULIB_ENVIRON@
204 # if !@HAVE_DECL_ENVIRON@
205 /* Set of environment variables and values.  An array of strings of the form
206    "VARIABLE=VALUE", terminated with a NULL.  */
207 #  if defined __APPLE__ && defined __MACH__
208 #   include <crt_externs.h>
209 #   define environ (*_NSGetEnviron ())
210 #  else
211 extern char **environ;
212 #  endif
213 # endif
214 #elif defined GNULIB_POSIXCHECK
215 # undef environ
216 # define environ \
217     (GL_LINK_WARNING ("environ is unportable - " \
218                       "use gnulib module environ for portability"), \
219      environ)
220 #endif
221
222
223 #if @GNULIB_EUIDACCESS@
224 # if !@HAVE_EUIDACCESS@
225 /* Like access(), except that is uses the effective user id and group id of
226    the current process.  */
227 extern int euidaccess (const char *filename, int mode);
228 # endif
229 #elif defined GNULIB_POSIXCHECK
230 # undef euidaccess
231 # define euidaccess(f,m) \
232     (GL_LINK_WARNING ("euidaccess is unportable - " \
233                       "use gnulib module euidaccess for portability"), \
234      euidaccess (f, m))
235 #endif
236
237
238 #if @GNULIB_FCHDIR@
239 # if @REPLACE_FCHDIR@
240
241 /* Change the process' current working directory to the directory on which
242    the given file descriptor is open.
243    Return 0 if successful, otherwise -1 and errno set.
244    See the POSIX:2001 specification
245    <http://www.opengroup.org/susv3xsh/fchdir.html>.  */
246 extern int fchdir (int /*fd*/);
247
248 #  define dup rpl_dup
249 extern int dup (int);
250
251 /* Gnulib internal hooks needed to maintain the fchdir metadata.  */
252 extern int _gl_register_fd (int fd, const char *filename);
253 extern void _gl_unregister_fd (int fd);
254 extern int _gl_register_dup (int oldfd, int newfd);
255 extern const char *_gl_directory_name (int fd);
256
257 # endif
258 #elif defined GNULIB_POSIXCHECK
259 # undef fchdir
260 # define fchdir(f) \
261     (GL_LINK_WARNING ("fchdir is unportable - " \
262                       "use gnulib module fchdir for portability"), \
263      fchdir (f))
264 #endif
265
266
267 #if @GNULIB_FSYNC@
268 /* Synchronize changes to a file.
269    Return 0 if successful, otherwise -1 and errno set.
270    See POSIX:2001 specification
271    <http://www.opengroup.org/susv3xsh/fsync.html>.  */
272 # if !@HAVE_FSYNC@
273 extern int fsync (int fd);
274 # endif
275 #elif defined GNULIB_POSIXCHECK
276 # undef fsync
277 # define fsync(fd) \
278     (GL_LINK_WARNING ("fsync is unportable - " \
279                       "use gnulib module fsync for portability"), \
280      fsync (fd))
281 #endif
282
283
284 #if @GNULIB_FTRUNCATE@
285 # if !@HAVE_FTRUNCATE@
286 /* Change the size of the file to which FD is opened to become equal to LENGTH.
287    Return 0 if successful, otherwise -1 and errno set.
288    See the POSIX:2001 specification
289    <http://www.opengroup.org/susv3xsh/ftruncate.html>.  */
290 extern int ftruncate (int fd, off_t length);
291 # endif
292 #elif defined GNULIB_POSIXCHECK
293 # undef ftruncate
294 # define ftruncate(f,l) \
295     (GL_LINK_WARNING ("ftruncate is unportable - " \
296                       "use gnulib module ftruncate for portability"), \
297      ftruncate (f, l))
298 #endif
299
300
301 #if @GNULIB_GETCWD@
302 /* Include the headers that might declare getcwd so that they will not
303    cause confusion if included after this file.  */
304 # include <stdlib.h>
305 # if @REPLACE_GETCWD@
306 /* Get the name of the current working directory, and put it in SIZE bytes
307    of BUF.
308    Return BUF if successful, or NULL if the directory couldn't be determined
309    or SIZE was too small.
310    See the POSIX:2001 specification
311    <http://www.opengroup.org/susv3xsh/getcwd.html>.
312    Additionally, the gnulib module 'getcwd' guarantees the following GNU
313    extension: If BUF is NULL, an array is allocated with 'malloc'; the array
314    is SIZE bytes long, unless SIZE == 0, in which case it is as big as
315    necessary.  */
316 #  define getcwd rpl_getcwd
317 extern char * getcwd (char *buf, size_t size);
318 # endif
319 #elif defined GNULIB_POSIXCHECK
320 # undef getcwd
321 # define getcwd(b,s) \
322     (GL_LINK_WARNING ("getcwd is unportable - " \
323                       "use gnulib module getcwd for portability"), \
324      getcwd (b, s))
325 #endif
326
327
328 #if @GNULIB_GETDOMAINNAME@
329 /* Return the NIS domain name of the machine.
330    WARNING! The NIS domain name is unrelated to the fully qualified host name
331             of the machine.  It is also unrelated to email addresses.
332    WARNING! The NIS domain name is usually the empty string or "(none)" when
333             not using NIS.
334
335    Put up to LEN bytes of the NIS domain name into NAME.
336    Null terminate it if the name is shorter than LEN.
337    If the NIS domain name is longer than LEN, set errno = EINVAL and return -1.
338    Return 0 if successful, otherwise set errno and return -1.  */
339 # if !@HAVE_GETDOMAINNAME@
340 extern int getdomainname(char *name, size_t len);
341 # endif
342 #elif defined GNULIB_POSIXCHECK
343 # undef getdomainname
344 # define getdomainname(n,l) \
345     (GL_LINK_WARNING ("getdomainname is unportable - " \
346                       "use gnulib module getdomainname for portability"), \
347      getdomainname (n, l))
348 #endif
349
350
351 #if @GNULIB_GETDTABLESIZE@
352 # if !@HAVE_GETDTABLESIZE@
353 /* Return the maximum number of file descriptors in the current process.
354    In POSIX, this is same as sysconf (_SC_OPEN_MAX).  */
355 extern int getdtablesize (void);
356 # endif
357 #elif defined GNULIB_POSIXCHECK
358 # undef getdtablesize
359 # define getdtablesize() \
360     (GL_LINK_WARNING ("getdtablesize is unportable - " \
361                       "use gnulib module getdtablesize for portability"), \
362      getdtablesize ())
363 #endif
364
365
366 #if @GNULIB_GETHOSTNAME@
367 /* Return the standard host name of the machine.
368    WARNING! The host name may or may not be fully qualified.
369
370    Put up to LEN bytes of the host name into NAME.
371    Null terminate it if the name is shorter than LEN.
372    If the host name is longer than LEN, set errno = EINVAL and return -1.
373    Return 0 if successful, otherwise set errno and return -1.  */
374 # if @UNISTD_H_HAVE_WINSOCK2_H@
375 #  undef gethostname
376 #  define gethostname rpl_gethostname
377 # endif
378 # if @UNISTD_H_HAVE_WINSOCK2_H@ || !@HAVE_GETHOSTNAME@
379 extern int gethostname(char *name, size_t len);
380 # endif
381 #elif @UNISTD_H_HAVE_WINSOCK2_H@
382 # undef gethostname
383 # define gethostname gethostname_used_without_requesting_gnulib_module_gethostname
384 #elif defined GNULIB_POSIXCHECK
385 # undef gethostname
386 # define gethostname(n,l) \
387     (GL_LINK_WARNING ("gethostname is unportable - " \
388                       "use gnulib module gethostname for portability"), \
389      gethostname (n, l))
390 #endif
391
392
393 #if @GNULIB_GETLOGIN_R@
394 /* Copies the user's login name to NAME.
395    The array pointed to by NAME has room for SIZE bytes.
396
397    Returns 0 if successful.  Upon error, an error number is returned, or -1 in
398    the case that the login name cannot be found but no specific error is
399    provided (this case is hopefully rare but is left open by the POSIX spec).
400
401    See <http://www.opengroup.org/susv3xsh/getlogin.html>.
402  */
403 # if !@HAVE_DECL_GETLOGIN_R@
404 extern int getlogin_r (char *name, size_t size);
405 # endif
406 #elif defined GNULIB_POSIXCHECK
407 # undef getlogin_r
408 # define getlogin_r(n,s) \
409     (GL_LINK_WARNING ("getlogin_r is unportable - " \
410                       "use gnulib module getlogin_r for portability"), \
411      getlogin_r (n, s))
412 #endif
413
414
415 #if @GNULIB_GETPAGESIZE@
416 # if @REPLACE_GETPAGESIZE@
417 #  define getpagesize rpl_getpagesize
418 extern int getpagesize (void);
419 # elif !@HAVE_GETPAGESIZE@
420 /* This is for POSIX systems.  */
421 #  if !defined getpagesize && defined _SC_PAGESIZE
422 #   if ! (defined __VMS && __VMS_VER < 70000000)
423 #    define getpagesize() sysconf (_SC_PAGESIZE)
424 #   endif
425 #  endif
426 /* This is for older VMS.  */
427 #  if !defined getpagesize && defined __VMS
428 #   ifdef __ALPHA
429 #    define getpagesize() 8192
430 #   else
431 #    define getpagesize() 512
432 #   endif
433 #  endif
434 /* This is for BeOS.  */
435 #  if !defined getpagesize && @HAVE_OS_H@
436 #   include <OS.h>
437 #   if defined B_PAGE_SIZE
438 #    define getpagesize() B_PAGE_SIZE
439 #   endif
440 #  endif
441 /* This is for AmigaOS4.0.  */
442 #  if !defined getpagesize && defined __amigaos4__
443 #   define getpagesize() 2048
444 #  endif
445 /* This is for older Unix systems.  */
446 #  if !defined getpagesize && @HAVE_SYS_PARAM_H@
447 #   include <sys/param.h>
448 #   ifdef EXEC_PAGESIZE
449 #    define getpagesize() EXEC_PAGESIZE
450 #   else
451 #    ifdef NBPG
452 #     ifndef CLSIZE
453 #      define CLSIZE 1
454 #     endif
455 #     define getpagesize() (NBPG * CLSIZE)
456 #    else
457 #     ifdef NBPC
458 #      define getpagesize() NBPC
459 #     endif
460 #    endif
461 #   endif
462 #  endif
463 # endif
464 #elif defined GNULIB_POSIXCHECK
465 # undef getpagesize
466 # define getpagesize() \
467     (GL_LINK_WARNING ("getpagesize is unportable - " \
468                       "use gnulib module getpagesize for portability"), \
469      getpagesize ())
470 #endif
471
472
473 #if @GNULIB_GETUSERSHELL@
474 # if !@HAVE_GETUSERSHELL@
475 /* Return the next valid login shell on the system, or NULL when the end of
476    the list has been reached.  */
477 extern char *getusershell (void);
478 /* Rewind to pointer that is advanced at each getusershell() call.  */
479 extern void setusershell (void);
480 /* Free the pointer that is advanced at each getusershell() call and
481    associated resources.  */
482 extern void endusershell (void);
483 # endif
484 #elif defined GNULIB_POSIXCHECK
485 # undef getusershell
486 # define getusershell() \
487     (GL_LINK_WARNING ("getusershell is unportable - " \
488                       "use gnulib module getusershell for portability"), \
489      getusershell ())
490 # undef setusershell
491 # define setusershell() \
492     (GL_LINK_WARNING ("setusershell is unportable - " \
493                       "use gnulib module getusershell for portability"), \
494      setusershell ())
495 # undef endusershell
496 # define endusershell() \
497     (GL_LINK_WARNING ("endusershell is unportable - " \
498                       "use gnulib module getusershell for portability"), \
499      endusershell ())
500 #endif
501
502
503 #if @GNULIB_LCHOWN@
504 # if @REPLACE_LCHOWN@
505 /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE
506    to GID (if GID is not -1).  Do not follow symbolic links.
507    Return 0 if successful, otherwise -1 and errno set.
508    See the POSIX:2001 specification
509    <http://www.opengroup.org/susv3xsh/lchown.html>.  */
510 #  define lchown rpl_lchown
511 extern int lchown (char const *file, uid_t owner, gid_t group);
512 # endif
513 #elif defined GNULIB_POSIXCHECK
514 # undef lchown
515 # define lchown(f,u,g) \
516     (GL_LINK_WARNING ("lchown is unportable to pre-POSIX.1-2001 " \
517                       "systems - use gnulib module lchown for portability"), \
518      lchown (f, u, g))
519 #endif
520
521
522 #if @GNULIB_LINK@
523 /* Create a new hard link for an existing file.
524    Return 0 if successful, otherwise -1 and errno set.
525    See POSIX:2001 specification
526    <http://www.opengroup.org/susv3xsh/link.html>.  */
527 # if !@HAVE_LINK@
528 extern int link (const char *path1, const char *path2);
529 # endif
530 #elif defined GNULIB_POSIXCHECK
531 # undef link
532 # define link(path1,path2) \
533     (GL_LINK_WARNING ("link is unportable - " \
534                       "use gnulib module link for portability"), \
535      link (path1, path2))
536 #endif
537
538
539 #if @GNULIB_LSEEK@
540 # if @REPLACE_LSEEK@
541 /* Set the offset of FD relative to SEEK_SET, SEEK_CUR, or SEEK_END.
542    Return the new offset if successful, otherwise -1 and errno set.
543    See the POSIX:2001 specification
544    <http://www.opengroup.org/susv3xsh/lseek.html>.  */
545 #  define lseek rpl_lseek
546    extern off_t lseek (int fd, off_t offset, int whence);
547 # endif
548 #elif defined GNULIB_POSIXCHECK
549 # undef lseek
550 # define lseek(f,o,w) \
551     (GL_LINK_WARNING ("lseek does not fail with ESPIPE on pipes on some " \
552                       "systems - use gnulib module lseek for portability"), \
553      lseek (f, o, w))
554 #endif
555
556
557 #if @GNULIB_PIPE2@
558 /* Create a pipe, applying the given flags when opening the read-end of the
559    pipe and the write-end of the pipe.
560    The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)
561    and O_TEXT, O_BINARY (defined in "binary-io.h").
562    Store the read-end as fd[0] and the write-end as fd[1].
563    Return 0 upon success, or -1 with errno set upon failure.
564    See also the Linux man page at
565    <http://www.kernel.org/doc/man-pages/online/pages/man2/pipe2.2.html>.  */
566 # if @HAVE_PIPE2@
567 #  define pipe2 rpl_pipe2
568 # endif
569 extern int pipe2 (int fd[2], int flags);
570 #elif defined GNULIB_POSIXCHECK
571 # undef pipe2
572 # define pipe2(f,o) \
573     (GL_LINK_WARNING ("pipe2 is unportable - " \
574                       "use gnulib module pipe2 for portability"), \
575      pipe2 (f, o))
576 #endif
577
578
579 #if @GNULIB_READLINK@
580 /* Read the contents of the symbolic link FILE and place the first BUFSIZE
581    bytes of it into BUF.  Return the number of bytes placed into BUF if
582    successful, otherwise -1 and errno set.
583    See the POSIX:2001 specification
584    <http://www.opengroup.org/susv3xsh/readlink.html>.  */
585 # if !@HAVE_READLINK@
586 extern int readlink (const char *file, char *buf, size_t bufsize);
587 # endif
588 #elif defined GNULIB_POSIXCHECK
589 # undef readlink
590 # define readlink(f,b,s) \
591     (GL_LINK_WARNING ("readlink is unportable - " \
592                       "use gnulib module readlink for portability"), \
593      readlink (f, b, s))
594 #endif
595
596
597 #if @GNULIB_SLEEP@
598 /* Pause the execution of the current thread for N seconds.
599    Returns the number of seconds left to sleep.
600    See the POSIX:2001 specification
601    <http://www.opengroup.org/susv3xsh/sleep.html>.  */
602 # if !@HAVE_SLEEP@
603 extern unsigned int sleep (unsigned int n);
604 # endif
605 #elif defined GNULIB_POSIXCHECK
606 # undef sleep
607 # define sleep(n) \
608     (GL_LINK_WARNING ("sleep is unportable - " \
609                       "use gnulib module sleep for portability"), \
610      sleep (n))
611 #endif
612
613
614 #if @GNULIB_WRITE@ && @REPLACE_WRITE@ && @GNULIB_UNISTD_H_SIGPIPE@
615 /* Write up to COUNT bytes starting at BUF to file descriptor FD.
616    See the POSIX:2001 specification
617    <http://www.opengroup.org/susv3xsh/write.html>.  */
618 # undef write
619 # define write rpl_write
620 extern ssize_t write (int fd, const void *buf, size_t count);
621 #endif
622
623
624 #ifdef __cplusplus
625 }
626 #endif
627
628
629 #endif /* _GL_UNISTD_H */
630 #endif /* _GL_UNISTD_H */