1 /* A GNU-like <stdlib.h>.
3 Copyright (C) 1995, 2001-2004, 2006-2011 Free Software Foundation, Inc.
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.
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.
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/>. */
19 @PRAGMA_SYSTEM_HEADER@
23 #if defined __need_malloc_and_calloc
24 /* Special invocation convention inside glibc header files. */
26 #@INCLUDE_NEXT@ @NEXT_STDLIB_H@
29 /* Normal invocation convention. */
31 #ifndef _@GUARD_PREFIX@_STDLIB_H
33 /* The include_next requires a split double-inclusion guard. */
34 #@INCLUDE_NEXT@ @NEXT_STDLIB_H@
36 #ifndef _@GUARD_PREFIX@_STDLIB_H
37 #define _@GUARD_PREFIX@_STDLIB_H
39 /* NetBSD 5.0 mis-defines NULL. */
42 /* MirBSD 10 defines WEXITSTATUS in <sys/wait.h>, not in <stdlib.h>. */
43 #if @GNULIB_SYSTEM_POSIX@ && !defined WEXITSTATUS
44 # include <sys/wait.h>
47 /* Solaris declares getloadavg() in <sys/loadavg.h>. */
48 #if (@GNULIB_GETLOADAVG@ || defined GNULIB_POSIXCHECK) && @HAVE_SYS_LOADAVG_H@
49 # include <sys/loadavg.h>
54 /* OSF/1 5.1 declares 'struct random_data' in <random.h>, which is included
55 from <stdlib.h> if _REENTRANT is defined. Include it whenever we need
56 'struct random_data'. */
61 # if !@HAVE_STRUCT_RANDOM_DATA@ || !@HAVE_RANDOM_R@
65 # if !@HAVE_STRUCT_RANDOM_DATA@
66 /* Define 'struct random_data'.
67 But allow multiple gnulib generated <stdlib.h> replacements to coexist. */
68 # if !GNULIB_defined_struct_random_data
71 int32_t *fptr
; /* Front pointer. */
72 int32_t *rptr
; /* Rear pointer. */
73 int32_t *state
; /* Array of state values. */
74 int rand_type
; /* Type of random number generator. */
75 int rand_deg
; /* Degree of random number generator. */
76 int rand_sep
; /* Distance between front and rear. */
77 int32_t *end_ptr
; /* Pointer behind state table. */
79 # define GNULIB_defined_struct_random_data 1
84 #if (@GNULIB_MKSTEMP@ || @GNULIB_MKSTEMPS@ || @GNULIB_GETSUBOPT@ || defined GNULIB_POSIXCHECK) && ! defined __GLIBC__ && !((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)
85 /* On MacOS X 10.3, only <unistd.h> declares mkstemp. */
86 /* On MacOS X 10.5, only <unistd.h> declares mkstemps. */
87 /* On Cygwin 1.7.1, only <unistd.h> declares getsubopt. */
88 /* But avoid namespace pollution on glibc systems and native Windows. */
92 #if 3 <= __GNUC__ || __GNUC__ == 2 && 8 <= __GNUC_MINOR__
93 # define _GL_ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
95 # define _GL_ATTRIBUTE_NORETURN
98 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
100 /* The definition of _GL_ARG_NONNULL is copied here. */
102 /* The definition of _GL_WARN_ON_USE is copied here. */
105 /* Some systems do not define EXIT_*, despite otherwise supporting C89. */
107 # define EXIT_SUCCESS 0
109 /* Tandem/NSK and other platforms that define EXIT_FAILURE as -1 interfere
110 with proper operation of xargs. */
112 # define EXIT_FAILURE 1
113 #elif EXIT_FAILURE != 1
115 # define EXIT_FAILURE 1
120 /* Terminate the current process with the given return code, without running
121 the 'atexit' handlers. */
123 _GL_FUNCDECL_SYS (_Exit
, void, (int status
) _GL_ATTRIBUTE_NORETURN
);
125 _GL_CXXALIAS_SYS (_Exit
, void, (int status
));
126 _GL_CXXALIASWARN (_Exit
);
127 #elif defined GNULIB_POSIXCHECK
129 # if HAVE_RAW_DECL__EXIT
130 _GL_WARN_ON_USE (_Exit
, "_Exit is unportable - "
131 "use gnulib module _Exit for portability");
137 /* Parse a signed decimal integer.
138 Returns the value of the integer. Errors are not detected. */
140 _GL_FUNCDECL_SYS (atoll
, long long, (const char *string
) _GL_ARG_NONNULL ((1)));
142 _GL_CXXALIAS_SYS (atoll
, long long, (const char *string
));
143 _GL_CXXALIASWARN (atoll
);
144 #elif defined GNULIB_POSIXCHECK
146 # if HAVE_RAW_DECL_ATOLL
147 _GL_WARN_ON_USE (atoll
, "atoll is unportable - "
148 "use gnulib module atoll for portability");
152 #if @GNULIB_CALLOC_POSIX@
153 # if @REPLACE_CALLOC@
154 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
156 # define calloc rpl_calloc
158 _GL_FUNCDECL_RPL (calloc
, void *, (size_t nmemb
, size_t size
));
159 _GL_CXXALIAS_RPL (calloc
, void *, (size_t nmemb
, size_t size
));
161 _GL_CXXALIAS_SYS (calloc
, void *, (size_t nmemb
, size_t size
));
163 _GL_CXXALIASWARN (calloc
);
164 #elif defined GNULIB_POSIXCHECK
166 /* Assume calloc is always declared. */
167 _GL_WARN_ON_USE (calloc
, "calloc is not POSIX compliant everywhere - "
168 "use gnulib module calloc-posix for portability");
171 #if @GNULIB_CANONICALIZE_FILE_NAME@
172 # if @REPLACE_CANONICALIZE_FILE_NAME@
173 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
174 # define canonicalize_file_name rpl_canonicalize_file_name
176 _GL_FUNCDECL_RPL (canonicalize_file_name
, char *, (const char *name
)
177 _GL_ARG_NONNULL ((1)));
178 _GL_CXXALIAS_RPL (canonicalize_file_name
, char *, (const char *name
));
180 # if !@HAVE_CANONICALIZE_FILE_NAME@
181 _GL_FUNCDECL_SYS (canonicalize_file_name
, char *, (const char *name
)
182 _GL_ARG_NONNULL ((1)));
184 _GL_CXXALIAS_SYS (canonicalize_file_name
, char *, (const char *name
));
186 _GL_CXXALIASWARN (canonicalize_file_name
);
187 #elif defined GNULIB_POSIXCHECK
188 # undef canonicalize_file_name
189 # if HAVE_RAW_DECL_CANONICALIZE_FILE_NAME
190 _GL_WARN_ON_USE (canonicalize_file_name
,
191 "canonicalize_file_name is unportable - "
192 "use gnulib module canonicalize-lgpl for portability");
196 #if @GNULIB_GETLOADAVG@
197 /* Store max(NELEM,3) load average numbers in LOADAVG[].
198 The three numbers are the load average of the last 1 minute, the last 5
199 minutes, and the last 15 minutes, respectively.
200 LOADAVG is an array of NELEM numbers. */
201 # if !@HAVE_DECL_GETLOADAVG@
202 _GL_FUNCDECL_SYS (getloadavg
, int, (double loadavg
[], int nelem
)
203 _GL_ARG_NONNULL ((1)));
205 _GL_CXXALIAS_SYS (getloadavg
, int, (double loadavg
[], int nelem
));
206 _GL_CXXALIASWARN (getloadavg
);
207 #elif defined GNULIB_POSIXCHECK
209 # if HAVE_RAW_DECL_GETLOADAVG
210 _GL_WARN_ON_USE (getloadavg
, "getloadavg is not portable - "
211 "use gnulib module getloadavg for portability");
215 #if @GNULIB_GETSUBOPT@
216 /* Assuming *OPTIONP is a comma separated list of elements of the form
217 "token" or "token=value", getsubopt parses the first of these elements.
218 If the first element refers to a "token" that is member of the given
219 NULL-terminated array of tokens:
220 - It replaces the comma with a NUL byte, updates *OPTIONP to point past
221 the first option and the comma, sets *VALUEP to the value of the
222 element (or NULL if it doesn't contain an "=" sign),
223 - It returns the index of the "token" in the given array of tokens.
224 Otherwise it returns -1, and *OPTIONP and *VALUEP are undefined.
225 For more details see the POSIX:2001 specification.
226 http://www.opengroup.org/susv3xsh/getsubopt.html */
227 # if !@HAVE_GETSUBOPT@
228 _GL_FUNCDECL_SYS (getsubopt
, int,
229 (char **optionp
, char *const *tokens
, char **valuep
)
230 _GL_ARG_NONNULL ((1, 2, 3)));
232 _GL_CXXALIAS_SYS (getsubopt
, int,
233 (char **optionp
, char *const *tokens
, char **valuep
));
234 _GL_CXXALIASWARN (getsubopt
);
235 #elif defined GNULIB_POSIXCHECK
237 # if HAVE_RAW_DECL_GETSUBOPT
238 _GL_WARN_ON_USE (getsubopt
, "getsubopt is unportable - "
239 "use gnulib module getsubopt for portability");
244 /* Change the ownership and access permission of the slave side of the
245 pseudo-terminal whose master side is specified by FD. */
247 _GL_FUNCDECL_SYS (grantpt
, int, (int fd
));
249 _GL_CXXALIAS_SYS (grantpt
, int, (int fd
));
250 _GL_CXXALIASWARN (grantpt
);
251 #elif defined GNULIB_POSIXCHECK
253 # if HAVE_RAW_DECL_GRANTPT
254 _GL_WARN_ON_USE (ptsname
, "grantpt is not portable - "
255 "use gnulib module grantpt for portability");
259 /* If _GL_USE_STDLIB_ALLOC is nonzero, the including module does not
260 rely on GNU or POSIX semantics for malloc and realloc (for example,
261 by never specifying a zero size), so it does not need malloc or
262 realloc to be redefined. */
263 #if @GNULIB_MALLOC_POSIX@
264 # if @REPLACE_MALLOC@
265 # if !((defined __cplusplus && defined GNULIB_NAMESPACE) \
266 || _GL_USE_STDLIB_ALLOC)
268 # define malloc rpl_malloc
270 _GL_FUNCDECL_RPL (malloc
, void *, (size_t size
));
271 _GL_CXXALIAS_RPL (malloc
, void *, (size_t size
));
273 _GL_CXXALIAS_SYS (malloc
, void *, (size_t size
));
275 _GL_CXXALIASWARN (malloc
);
276 #elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC
278 /* Assume malloc is always declared. */
279 _GL_WARN_ON_USE (malloc
, "malloc is not POSIX compliant everywhere - "
280 "use gnulib module malloc-posix for portability");
283 /* Convert a multibyte character to a wide character. */
285 # if @REPLACE_MBTOWC@
286 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
288 # define mbtowc rpl_mbtowc
290 _GL_FUNCDECL_RPL (mbtowc
, int, (wchar_t *pwc
, const char *s
, size_t n
));
291 _GL_CXXALIAS_RPL (mbtowc
, int, (wchar_t *pwc
, const char *s
, size_t n
));
293 _GL_CXXALIAS_SYS (mbtowc
, int, (wchar_t *pwc
, const char *s
, size_t n
));
295 _GL_CXXALIASWARN (mbtowc
);
299 /* Create a unique temporary directory from TEMPLATE.
300 The last six characters of TEMPLATE must be "XXXXXX";
301 they are replaced with a string that makes the directory name unique.
302 Returns TEMPLATE, or a null pointer if it cannot get a unique name.
303 The directory is created mode 700. */
305 _GL_FUNCDECL_SYS (mkdtemp
, char *, (char * /*template*/) _GL_ARG_NONNULL ((1)));
307 _GL_CXXALIAS_SYS (mkdtemp
, char *, (char * /*template*/));
308 _GL_CXXALIASWARN (mkdtemp
);
309 #elif defined GNULIB_POSIXCHECK
311 # if HAVE_RAW_DECL_MKDTEMP
312 _GL_WARN_ON_USE (mkdtemp
, "mkdtemp is unportable - "
313 "use gnulib module mkdtemp for portability");
317 #if @GNULIB_MKOSTEMP@
318 /* Create a unique temporary file from TEMPLATE.
319 The last six characters of TEMPLATE must be "XXXXXX";
320 they are replaced with a string that makes the file name unique.
321 The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)
322 and O_TEXT, O_BINARY (defined in "binary-io.h").
323 The file is then created, with the specified flags, ensuring it didn't exist
325 The file is created read-write (mask at least 0600 & ~umask), but it may be
326 world-readable and world-writable (mask 0666 & ~umask), depending on the
328 Returns the open file descriptor if successful, otherwise -1 and errno
330 # if !@HAVE_MKOSTEMP@
331 _GL_FUNCDECL_SYS (mkostemp
, int, (char * /*template*/, int /*flags*/)
332 _GL_ARG_NONNULL ((1)));
334 _GL_CXXALIAS_SYS (mkostemp
, int, (char * /*template*/, int /*flags*/));
335 _GL_CXXALIASWARN (mkostemp
);
336 #elif defined GNULIB_POSIXCHECK
338 # if HAVE_RAW_DECL_MKOSTEMP
339 _GL_WARN_ON_USE (mkostemp
, "mkostemp is unportable - "
340 "use gnulib module mkostemp for portability");
344 #if @GNULIB_MKOSTEMPS@
345 /* Create a unique temporary file from TEMPLATE.
346 The last six characters of TEMPLATE before a suffix of length
347 SUFFIXLEN must be "XXXXXX";
348 they are replaced with a string that makes the file name unique.
349 The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)
350 and O_TEXT, O_BINARY (defined in "binary-io.h").
351 The file is then created, with the specified flags, ensuring it didn't exist
353 The file is created read-write (mask at least 0600 & ~umask), but it may be
354 world-readable and world-writable (mask 0666 & ~umask), depending on the
356 Returns the open file descriptor if successful, otherwise -1 and errno
358 # if !@HAVE_MKOSTEMPS@
359 _GL_FUNCDECL_SYS (mkostemps
, int,
360 (char * /*template*/, int /*suffixlen*/, int /*flags*/)
361 _GL_ARG_NONNULL ((1)));
363 _GL_CXXALIAS_SYS (mkostemps
, int,
364 (char * /*template*/, int /*suffixlen*/, int /*flags*/));
365 _GL_CXXALIASWARN (mkostemps
);
366 #elif defined GNULIB_POSIXCHECK
368 # if HAVE_RAW_DECL_MKOSTEMPS
369 _GL_WARN_ON_USE (mkostemps
, "mkostemps is unportable - "
370 "use gnulib module mkostemps for portability");
375 /* Create a unique temporary file from TEMPLATE.
376 The last six characters of TEMPLATE must be "XXXXXX";
377 they are replaced with a string that makes the file name unique.
378 The file is then created, ensuring it didn't exist before.
379 The file is created read-write (mask at least 0600 & ~umask), but it may be
380 world-readable and world-writable (mask 0666 & ~umask), depending on the
382 Returns the open file descriptor if successful, otherwise -1 and errno
384 # if @REPLACE_MKSTEMP@
385 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
386 # define mkstemp rpl_mkstemp
388 _GL_FUNCDECL_RPL (mkstemp
, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
389 _GL_CXXALIAS_RPL (mkstemp
, int, (char * /*template*/));
391 # if ! @HAVE_MKSTEMP@
392 _GL_FUNCDECL_SYS (mkstemp
, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
394 _GL_CXXALIAS_SYS (mkstemp
, int, (char * /*template*/));
396 _GL_CXXALIASWARN (mkstemp
);
397 #elif defined GNULIB_POSIXCHECK
399 # if HAVE_RAW_DECL_MKSTEMP
400 _GL_WARN_ON_USE (mkstemp
, "mkstemp is unportable - "
401 "use gnulib module mkstemp for portability");
405 #if @GNULIB_MKSTEMPS@
406 /* Create a unique temporary file from TEMPLATE.
407 The last six characters of TEMPLATE prior to a suffix of length
408 SUFFIXLEN must be "XXXXXX";
409 they are replaced with a string that makes the file name unique.
410 The file is then created, ensuring it didn't exist before.
411 The file is created read-write (mask at least 0600 & ~umask), but it may be
412 world-readable and world-writable (mask 0666 & ~umask), depending on the
414 Returns the open file descriptor if successful, otherwise -1 and errno
416 # if !@HAVE_MKSTEMPS@
417 _GL_FUNCDECL_SYS (mkstemps
, int, (char * /*template*/, int /*suffixlen*/)
418 _GL_ARG_NONNULL ((1)));
420 _GL_CXXALIAS_SYS (mkstemps
, int, (char * /*template*/, int /*suffixlen*/));
421 _GL_CXXALIASWARN (mkstemps
);
422 #elif defined GNULIB_POSIXCHECK
424 # if HAVE_RAW_DECL_MKSTEMPS
425 _GL_WARN_ON_USE (mkstemps
, "mkstemps is unportable - "
426 "use gnulib module mkstemps for portability");
431 /* Return the pathname of the pseudo-terminal slave associated with
432 the master FD is open on, or NULL on errors. */
434 _GL_FUNCDECL_SYS (ptsname
, char *, (int fd
));
436 _GL_CXXALIAS_SYS (ptsname
, char *, (int fd
));
437 _GL_CXXALIASWARN (ptsname
);
438 #elif defined GNULIB_POSIXCHECK
440 # if HAVE_RAW_DECL_PTSNAME
441 _GL_WARN_ON_USE (ptsname
, "ptsname is not portable - "
442 "use gnulib module ptsname for portability");
447 # if @REPLACE_PUTENV@
448 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
450 # define putenv rpl_putenv
452 _GL_FUNCDECL_RPL (putenv
, int, (char *string
) _GL_ARG_NONNULL ((1)));
453 _GL_CXXALIAS_RPL (putenv
, int, (char *string
));
455 _GL_CXXALIAS_SYS (putenv
, int, (char *string
));
457 _GL_CXXALIASWARN (putenv
);
461 #if @GNULIB_RANDOM_R@
462 # if !@HAVE_RANDOM_R@
464 # define RAND_MAX 2147483647
469 #if @GNULIB_RANDOM_R@
470 # if !@HAVE_RANDOM_R@
471 _GL_FUNCDECL_SYS (random_r
, int, (struct random_data
*buf
, int32_t *result
)
472 _GL_ARG_NONNULL ((1, 2)));
474 _GL_CXXALIAS_SYS (random_r
, int, (struct random_data
*buf
, int32_t *result
));
475 _GL_CXXALIASWARN (random_r
);
476 #elif defined GNULIB_POSIXCHECK
478 # if HAVE_RAW_DECL_RANDOM_R
479 _GL_WARN_ON_USE (random_r
, "random_r is unportable - "
480 "use gnulib module random_r for portability");
484 #if @GNULIB_RANDOM_R@
485 # if !@HAVE_RANDOM_R@
486 _GL_FUNCDECL_SYS (srandom_r
, int,
487 (unsigned int seed
, struct random_data
*rand_state
)
488 _GL_ARG_NONNULL ((2)));
490 _GL_CXXALIAS_SYS (srandom_r
, int,
491 (unsigned int seed
, struct random_data
*rand_state
));
492 _GL_CXXALIASWARN (srandom_r
);
493 #elif defined GNULIB_POSIXCHECK
495 # if HAVE_RAW_DECL_SRANDOM_R
496 _GL_WARN_ON_USE (srandom_r
, "srandom_r is unportable - "
497 "use gnulib module random_r for portability");
501 #if @GNULIB_RANDOM_R@
502 # if !@HAVE_RANDOM_R@
503 _GL_FUNCDECL_SYS (initstate_r
, int,
504 (unsigned int seed
, char *buf
, size_t buf_size
,
505 struct random_data
*rand_state
)
506 _GL_ARG_NONNULL ((2, 4)));
508 _GL_CXXALIAS_SYS (initstate_r
, int,
509 (unsigned int seed
, char *buf
, size_t buf_size
,
510 struct random_data
*rand_state
));
511 _GL_CXXALIASWARN (initstate_r
);
512 #elif defined GNULIB_POSIXCHECK
514 # if HAVE_RAW_DECL_INITSTATE_R
515 _GL_WARN_ON_USE (initstate_r
, "initstate_r is unportable - "
516 "use gnulib module random_r for portability");
520 #if @GNULIB_RANDOM_R@
521 # if !@HAVE_RANDOM_R@
522 _GL_FUNCDECL_SYS (setstate_r
, int,
523 (char *arg_state
, struct random_data
*rand_state
)
524 _GL_ARG_NONNULL ((1, 2)));
526 _GL_CXXALIAS_SYS (setstate_r
, int,
527 (char *arg_state
, struct random_data
*rand_state
));
528 _GL_CXXALIASWARN (setstate_r
);
529 #elif defined GNULIB_POSIXCHECK
531 # if HAVE_RAW_DECL_SETSTATE_R
532 _GL_WARN_ON_USE (setstate_r
, "setstate_r is unportable - "
533 "use gnulib module random_r for portability");
538 #if @GNULIB_REALLOC_POSIX@
539 # if @REPLACE_REALLOC@
540 # if !((defined __cplusplus && defined GNULIB_NAMESPACE) \
541 || _GL_USE_STDLIB_ALLOC)
543 # define realloc rpl_realloc
545 _GL_FUNCDECL_RPL (realloc
, void *, (void *ptr
, size_t size
));
546 _GL_CXXALIAS_RPL (realloc
, void *, (void *ptr
, size_t size
));
548 _GL_CXXALIAS_SYS (realloc
, void *, (void *ptr
, size_t size
));
550 _GL_CXXALIASWARN (realloc
);
551 #elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC
553 /* Assume realloc is always declared. */
554 _GL_WARN_ON_USE (realloc
, "realloc is not POSIX compliant everywhere - "
555 "use gnulib module realloc-posix for portability");
558 #if @GNULIB_REALPATH@
559 # if @REPLACE_REALPATH@
560 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
561 # define realpath rpl_realpath
563 _GL_FUNCDECL_RPL (realpath
, char *, (const char *name
, char *resolved
)
564 _GL_ARG_NONNULL ((1)));
565 _GL_CXXALIAS_RPL (realpath
, char *, (const char *name
, char *resolved
));
567 # if !@HAVE_REALPATH@
568 _GL_FUNCDECL_SYS (realpath
, char *, (const char *name
, char *resolved
)
569 _GL_ARG_NONNULL ((1)));
571 _GL_CXXALIAS_SYS (realpath
, char *, (const char *name
, char *resolved
));
573 _GL_CXXALIASWARN (realpath
);
574 #elif defined GNULIB_POSIXCHECK
576 # if HAVE_RAW_DECL_REALPATH
577 _GL_WARN_ON_USE (realpath
, "realpath is unportable - use gnulib module "
578 "canonicalize or canonicalize-lgpl for portability");
583 /* Test a user response to a question.
584 Return 1 if it is affirmative, 0 if it is negative, or -1 if not clear. */
586 _GL_FUNCDECL_SYS (rpmatch
, int, (const char *response
) _GL_ARG_NONNULL ((1)));
588 _GL_CXXALIAS_SYS (rpmatch
, int, (const char *response
));
589 _GL_CXXALIASWARN (rpmatch
);
590 #elif defined GNULIB_POSIXCHECK
592 # if HAVE_RAW_DECL_RPMATCH
593 _GL_WARN_ON_USE (rpmatch
, "rpmatch is unportable - "
594 "use gnulib module rpmatch for portability");
599 /* Set NAME to VALUE in the environment.
600 If REPLACE is nonzero, overwrite an existing value. */
601 # if @REPLACE_SETENV@
602 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
604 # define setenv rpl_setenv
606 _GL_FUNCDECL_RPL (setenv
, int,
607 (const char *name
, const char *value
, int replace
)
608 _GL_ARG_NONNULL ((1)));
609 _GL_CXXALIAS_RPL (setenv
, int,
610 (const char *name
, const char *value
, int replace
));
612 # if !@HAVE_DECL_SETENV@
613 _GL_FUNCDECL_SYS (setenv
, int,
614 (const char *name
, const char *value
, int replace
)
615 _GL_ARG_NONNULL ((1)));
617 _GL_CXXALIAS_SYS (setenv
, int,
618 (const char *name
, const char *value
, int replace
));
620 # if !(@REPLACE_SETENV@ && !@HAVE_DECL_SETENV@)
621 _GL_CXXALIASWARN (setenv
);
623 #elif defined GNULIB_POSIXCHECK
625 # if HAVE_RAW_DECL_SETENV
626 _GL_WARN_ON_USE (setenv
, "setenv is unportable - "
627 "use gnulib module setenv for portability");
632 /* Parse a double from STRING, updating ENDP if appropriate. */
633 # if @REPLACE_STRTOD@
634 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
635 # define strtod rpl_strtod
637 _GL_FUNCDECL_RPL (strtod
, double, (const char *str
, char **endp
)
638 _GL_ARG_NONNULL ((1)));
639 _GL_CXXALIAS_RPL (strtod
, double, (const char *str
, char **endp
));
642 _GL_FUNCDECL_SYS (strtod
, double, (const char *str
, char **endp
)
643 _GL_ARG_NONNULL ((1)));
645 _GL_CXXALIAS_SYS (strtod
, double, (const char *str
, char **endp
));
647 _GL_CXXALIASWARN (strtod
);
648 #elif defined GNULIB_POSIXCHECK
650 # if HAVE_RAW_DECL_STRTOD
651 _GL_WARN_ON_USE (strtod
, "strtod is unportable - "
652 "use gnulib module strtod for portability");
657 /* Parse a signed integer whose textual representation starts at STRING.
658 The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,
659 it may be decimal or octal (with prefix "0") or hexadecimal (with prefix
661 If ENDPTR is not NULL, the address of the first byte after the integer is
663 Upon overflow, the return value is LLONG_MAX or LLONG_MIN, and errno is set
666 _GL_FUNCDECL_SYS (strtoll
, long long,
667 (const char *string
, char **endptr
, int base
)
668 _GL_ARG_NONNULL ((1)));
670 _GL_CXXALIAS_SYS (strtoll
, long long,
671 (const char *string
, char **endptr
, int base
));
672 _GL_CXXALIASWARN (strtoll
);
673 #elif defined GNULIB_POSIXCHECK
675 # if HAVE_RAW_DECL_STRTOLL
676 _GL_WARN_ON_USE (strtoll
, "strtoll is unportable - "
677 "use gnulib module strtoll for portability");
681 #if @GNULIB_STRTOULL@
682 /* Parse an unsigned integer whose textual representation starts at STRING.
683 The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,
684 it may be decimal or octal (with prefix "0") or hexadecimal (with prefix
686 If ENDPTR is not NULL, the address of the first byte after the integer is
688 Upon overflow, the return value is ULLONG_MAX, and errno is set to
690 # if !@HAVE_STRTOULL@
691 _GL_FUNCDECL_SYS (strtoull
, unsigned long long,
692 (const char *string
, char **endptr
, int base
)
693 _GL_ARG_NONNULL ((1)));
695 _GL_CXXALIAS_SYS (strtoull
, unsigned long long,
696 (const char *string
, char **endptr
, int base
));
697 _GL_CXXALIASWARN (strtoull
);
698 #elif defined GNULIB_POSIXCHECK
700 # if HAVE_RAW_DECL_STRTOULL
701 _GL_WARN_ON_USE (strtoull
, "strtoull is unportable - "
702 "use gnulib module strtoull for portability");
706 #if @GNULIB_UNLOCKPT@
707 /* Unlock the slave side of the pseudo-terminal whose master side is specified
708 by FD, so that it can be opened. */
709 # if !@HAVE_UNLOCKPT@
710 _GL_FUNCDECL_SYS (unlockpt
, int, (int fd
));
712 _GL_CXXALIAS_SYS (unlockpt
, int, (int fd
));
713 _GL_CXXALIASWARN (unlockpt
);
714 #elif defined GNULIB_POSIXCHECK
716 # if HAVE_RAW_DECL_UNLOCKPT
717 _GL_WARN_ON_USE (unlockpt
, "unlockpt is not portable - "
718 "use gnulib module unlockpt for portability");
722 #if @GNULIB_UNSETENV@
723 /* Remove the variable NAME from the environment. */
724 # if @REPLACE_UNSETENV@
725 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
727 # define unsetenv rpl_unsetenv
729 _GL_FUNCDECL_RPL (unsetenv
, int, (const char *name
) _GL_ARG_NONNULL ((1)));
730 _GL_CXXALIAS_RPL (unsetenv
, int, (const char *name
));
732 # if !@HAVE_DECL_UNSETENV@
733 _GL_FUNCDECL_SYS (unsetenv
, int, (const char *name
) _GL_ARG_NONNULL ((1)));
735 _GL_CXXALIAS_SYS (unsetenv
, int, (const char *name
));
737 # if !(@REPLACE_UNSETENV@ && !@HAVE_DECL_UNSETENV@)
738 _GL_CXXALIASWARN (unsetenv
);
740 #elif defined GNULIB_POSIXCHECK
742 # if HAVE_RAW_DECL_UNSETENV
743 _GL_WARN_ON_USE (unsetenv
, "unsetenv is unportable - "
744 "use gnulib module unsetenv for portability");
748 /* Convert a wide character to a multibyte character. */
750 # if @REPLACE_WCTOMB@
751 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
753 # define wctomb rpl_wctomb
755 _GL_FUNCDECL_RPL (wctomb
, int, (char *s
, wchar_t wc
));
756 _GL_CXXALIAS_RPL (wctomb
, int, (char *s
, wchar_t wc
));
758 _GL_CXXALIAS_SYS (wctomb
, int, (char *s
, wchar_t wc
));
760 _GL_CXXALIASWARN (wctomb
);
764 #endif /* _@GUARD_PREFIX@_STDLIB_H */
765 #endif /* _@GUARD_PREFIX@_STDLIB_H */