random_r: Override incompatible API on AIX, OSF/1.
[gnulib.git] / lib / stdlib.in.h
1 /* A GNU-like <stdlib.h>.
2
3    Copyright (C) 1995, 2001-2004, 2006-2012 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 #if __GNUC__ >= 3
19 @PRAGMA_SYSTEM_HEADER@
20 #endif
21 @PRAGMA_COLUMNS@
22
23 #if defined __need_malloc_and_calloc
24 /* Special invocation convention inside glibc header files.  */
25
26 #@INCLUDE_NEXT@ @NEXT_STDLIB_H@
27
28 #else
29 /* Normal invocation convention.  */
30
31 #ifndef _@GUARD_PREFIX@_STDLIB_H
32
33 /* The include_next requires a split double-inclusion guard.  */
34 #@INCLUDE_NEXT@ @NEXT_STDLIB_H@
35
36 #ifndef _@GUARD_PREFIX@_STDLIB_H
37 #define _@GUARD_PREFIX@_STDLIB_H
38
39 /* NetBSD 5.0 mis-defines NULL.  */
40 #include <stddef.h>
41
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>
45 #endif
46
47 /* Solaris declares getloadavg() in <sys/loadavg.h>.  */
48 #if (@GNULIB_GETLOADAVG@ || defined GNULIB_POSIXCHECK) && @HAVE_SYS_LOADAVG_H@
49 # include <sys/loadavg.h>
50 #endif
51
52 #if @GNULIB_RANDOM_R@
53
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'.  */
57 # if @HAVE_RANDOM_H@
58 #  include <random.h>
59 # endif
60
61 # if !@HAVE_STRUCT_RANDOM_DATA@ || @REPLACE_RANDOM_R@ || !@HAVE_RANDOM_R@
62 #  include <stdint.h>
63 # endif
64
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
69 struct random_data
70 {
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.  */
78 };
79 #   define GNULIB_defined_struct_random_data 1
80 #  endif
81 # endif
82 #endif
83
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.  */
89 # include <unistd.h>
90 #endif
91
92 /* The definition of _Noreturn is copied here.  */
93
94 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
95
96 /* The definition of _GL_ARG_NONNULL is copied here.  */
97
98 /* The definition of _GL_WARN_ON_USE is copied here.  */
99
100
101 /* Some systems do not define EXIT_*, despite otherwise supporting C89.  */
102 #ifndef EXIT_SUCCESS
103 # define EXIT_SUCCESS 0
104 #endif
105 /* Tandem/NSK and other platforms that define EXIT_FAILURE as -1 interfere
106    with proper operation of xargs.  */
107 #ifndef EXIT_FAILURE
108 # define EXIT_FAILURE 1
109 #elif EXIT_FAILURE != 1
110 # undef EXIT_FAILURE
111 # define EXIT_FAILURE 1
112 #endif
113
114
115 #if @GNULIB__EXIT@
116 /* Terminate the current process with the given return code, without running
117    the 'atexit' handlers.  */
118 # if !@HAVE__EXIT@
119 _GL_FUNCDECL_SYS (_Exit, _Noreturn void, (int status));
120 # endif
121 _GL_CXXALIAS_SYS (_Exit, void, (int status));
122 _GL_CXXALIASWARN (_Exit);
123 #elif defined GNULIB_POSIXCHECK
124 # undef _Exit
125 # if HAVE_RAW_DECL__EXIT
126 _GL_WARN_ON_USE (_Exit, "_Exit is unportable - "
127                  "use gnulib module _Exit for portability");
128 # endif
129 #endif
130
131
132 #if @GNULIB_ATOLL@
133 /* Parse a signed decimal integer.
134    Returns the value of the integer.  Errors are not detected.  */
135 # if !@HAVE_ATOLL@
136 _GL_FUNCDECL_SYS (atoll, long long, (const char *string) _GL_ARG_NONNULL ((1)));
137 # endif
138 _GL_CXXALIAS_SYS (atoll, long long, (const char *string));
139 _GL_CXXALIASWARN (atoll);
140 #elif defined GNULIB_POSIXCHECK
141 # undef atoll
142 # if HAVE_RAW_DECL_ATOLL
143 _GL_WARN_ON_USE (atoll, "atoll is unportable - "
144                  "use gnulib module atoll for portability");
145 # endif
146 #endif
147
148 #if @GNULIB_CALLOC_POSIX@
149 # if @REPLACE_CALLOC@
150 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
151 #   undef calloc
152 #   define calloc rpl_calloc
153 #  endif
154 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));
155 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));
156 # else
157 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));
158 # endif
159 _GL_CXXALIASWARN (calloc);
160 #elif defined GNULIB_POSIXCHECK
161 # undef calloc
162 /* Assume calloc is always declared.  */
163 _GL_WARN_ON_USE (calloc, "calloc is not POSIX compliant everywhere - "
164                  "use gnulib module calloc-posix for portability");
165 #endif
166
167 #if @GNULIB_CANONICALIZE_FILE_NAME@
168 # if @REPLACE_CANONICALIZE_FILE_NAME@
169 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
170 #   define canonicalize_file_name rpl_canonicalize_file_name
171 #  endif
172 _GL_FUNCDECL_RPL (canonicalize_file_name, char *, (const char *name)
173                                                   _GL_ARG_NONNULL ((1)));
174 _GL_CXXALIAS_RPL (canonicalize_file_name, char *, (const char *name));
175 # else
176 #  if !@HAVE_CANONICALIZE_FILE_NAME@
177 _GL_FUNCDECL_SYS (canonicalize_file_name, char *, (const char *name)
178                                                   _GL_ARG_NONNULL ((1)));
179 #  endif
180 _GL_CXXALIAS_SYS (canonicalize_file_name, char *, (const char *name));
181 # endif
182 _GL_CXXALIASWARN (canonicalize_file_name);
183 #elif defined GNULIB_POSIXCHECK
184 # undef canonicalize_file_name
185 # if HAVE_RAW_DECL_CANONICALIZE_FILE_NAME
186 _GL_WARN_ON_USE (canonicalize_file_name,
187                  "canonicalize_file_name is unportable - "
188                  "use gnulib module canonicalize-lgpl for portability");
189 # endif
190 #endif
191
192 #if @GNULIB_GETLOADAVG@
193 /* Store max(NELEM,3) load average numbers in LOADAVG[].
194    The three numbers are the load average of the last 1 minute, the last 5
195    minutes, and the last 15 minutes, respectively.
196    LOADAVG is an array of NELEM numbers.  */
197 # if !@HAVE_DECL_GETLOADAVG@
198 _GL_FUNCDECL_SYS (getloadavg, int, (double loadavg[], int nelem)
199                                    _GL_ARG_NONNULL ((1)));
200 # endif
201 _GL_CXXALIAS_SYS (getloadavg, int, (double loadavg[], int nelem));
202 _GL_CXXALIASWARN (getloadavg);
203 #elif defined GNULIB_POSIXCHECK
204 # undef getloadavg
205 # if HAVE_RAW_DECL_GETLOADAVG
206 _GL_WARN_ON_USE (getloadavg, "getloadavg is not portable - "
207                  "use gnulib module getloadavg for portability");
208 # endif
209 #endif
210
211 #if @GNULIB_GETSUBOPT@
212 /* Assuming *OPTIONP is a comma separated list of elements of the form
213    "token" or "token=value", getsubopt parses the first of these elements.
214    If the first element refers to a "token" that is member of the given
215    NULL-terminated array of tokens:
216      - It replaces the comma with a NUL byte, updates *OPTIONP to point past
217        the first option and the comma, sets *VALUEP to the value of the
218        element (or NULL if it doesn't contain an "=" sign),
219      - It returns the index of the "token" in the given array of tokens.
220    Otherwise it returns -1, and *OPTIONP and *VALUEP are undefined.
221    For more details see the POSIX:2001 specification.
222    http://www.opengroup.org/susv3xsh/getsubopt.html */
223 # if !@HAVE_GETSUBOPT@
224 _GL_FUNCDECL_SYS (getsubopt, int,
225                   (char **optionp, char *const *tokens, char **valuep)
226                   _GL_ARG_NONNULL ((1, 2, 3)));
227 # endif
228 _GL_CXXALIAS_SYS (getsubopt, int,
229                   (char **optionp, char *const *tokens, char **valuep));
230 _GL_CXXALIASWARN (getsubopt);
231 #elif defined GNULIB_POSIXCHECK
232 # undef getsubopt
233 # if HAVE_RAW_DECL_GETSUBOPT
234 _GL_WARN_ON_USE (getsubopt, "getsubopt is unportable - "
235                  "use gnulib module getsubopt for portability");
236 # endif
237 #endif
238
239 #if @GNULIB_GRANTPT@
240 /* Change the ownership and access permission of the slave side of the
241    pseudo-terminal whose master side is specified by FD.  */
242 # if !@HAVE_GRANTPT@
243 _GL_FUNCDECL_SYS (grantpt, int, (int fd));
244 # endif
245 _GL_CXXALIAS_SYS (grantpt, int, (int fd));
246 _GL_CXXALIASWARN (grantpt);
247 #elif defined GNULIB_POSIXCHECK
248 # undef grantpt
249 # if HAVE_RAW_DECL_GRANTPT
250 _GL_WARN_ON_USE (grantpt, "grantpt is not portable - "
251                  "use gnulib module grantpt for portability");
252 # endif
253 #endif
254
255 /* If _GL_USE_STDLIB_ALLOC is nonzero, the including module does not
256    rely on GNU or POSIX semantics for malloc and realloc (for example,
257    by never specifying a zero size), so it does not need malloc or
258    realloc to be redefined.  */
259 #if @GNULIB_MALLOC_POSIX@
260 # if @REPLACE_MALLOC@
261 #  if !((defined __cplusplus && defined GNULIB_NAMESPACE) \
262         || _GL_USE_STDLIB_ALLOC)
263 #   undef malloc
264 #   define malloc rpl_malloc
265 #  endif
266 _GL_FUNCDECL_RPL (malloc, void *, (size_t size));
267 _GL_CXXALIAS_RPL (malloc, void *, (size_t size));
268 # else
269 _GL_CXXALIAS_SYS (malloc, void *, (size_t size));
270 # endif
271 _GL_CXXALIASWARN (malloc);
272 #elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC
273 # undef malloc
274 /* Assume malloc is always declared.  */
275 _GL_WARN_ON_USE (malloc, "malloc is not POSIX compliant everywhere - "
276                  "use gnulib module malloc-posix for portability");
277 #endif
278
279 /* Convert a multibyte character to a wide character.  */
280 #if @GNULIB_MBTOWC@
281 # if @REPLACE_MBTOWC@
282 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
283 #   undef mbtowc
284 #   define mbtowc rpl_mbtowc
285 #  endif
286 _GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
287 _GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
288 # else
289 _GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
290 # endif
291 _GL_CXXALIASWARN (mbtowc);
292 #endif
293
294 #if @GNULIB_MKDTEMP@
295 /* Create a unique temporary directory from TEMPLATE.
296    The last six characters of TEMPLATE must be "XXXXXX";
297    they are replaced with a string that makes the directory name unique.
298    Returns TEMPLATE, or a null pointer if it cannot get a unique name.
299    The directory is created mode 700.  */
300 # if !@HAVE_MKDTEMP@
301 _GL_FUNCDECL_SYS (mkdtemp, char *, (char * /*template*/) _GL_ARG_NONNULL ((1)));
302 # endif
303 _GL_CXXALIAS_SYS (mkdtemp, char *, (char * /*template*/));
304 _GL_CXXALIASWARN (mkdtemp);
305 #elif defined GNULIB_POSIXCHECK
306 # undef mkdtemp
307 # if HAVE_RAW_DECL_MKDTEMP
308 _GL_WARN_ON_USE (mkdtemp, "mkdtemp is unportable - "
309                  "use gnulib module mkdtemp for portability");
310 # endif
311 #endif
312
313 #if @GNULIB_MKOSTEMP@
314 /* Create a unique temporary file from TEMPLATE.
315    The last six characters of TEMPLATE must be "XXXXXX";
316    they are replaced with a string that makes the file name unique.
317    The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)
318    and O_TEXT, O_BINARY (defined in "binary-io.h").
319    The file is then created, with the specified flags, ensuring it didn't exist
320    before.
321    The file is created read-write (mask at least 0600 & ~umask), but it may be
322    world-readable and world-writable (mask 0666 & ~umask), depending on the
323    implementation.
324    Returns the open file descriptor if successful, otherwise -1 and errno
325    set.  */
326 # if !@HAVE_MKOSTEMP@
327 _GL_FUNCDECL_SYS (mkostemp, int, (char * /*template*/, int /*flags*/)
328                                  _GL_ARG_NONNULL ((1)));
329 # endif
330 _GL_CXXALIAS_SYS (mkostemp, int, (char * /*template*/, int /*flags*/));
331 _GL_CXXALIASWARN (mkostemp);
332 #elif defined GNULIB_POSIXCHECK
333 # undef mkostemp
334 # if HAVE_RAW_DECL_MKOSTEMP
335 _GL_WARN_ON_USE (mkostemp, "mkostemp is unportable - "
336                  "use gnulib module mkostemp for portability");
337 # endif
338 #endif
339
340 #if @GNULIB_MKOSTEMPS@
341 /* Create a unique temporary file from TEMPLATE.
342    The last six characters of TEMPLATE before a suffix of length
343    SUFFIXLEN must be "XXXXXX";
344    they are replaced with a string that makes the file name unique.
345    The flags are a bitmask, possibly including O_CLOEXEC (defined in <fcntl.h>)
346    and O_TEXT, O_BINARY (defined in "binary-io.h").
347    The file is then created, with the specified flags, ensuring it didn't exist
348    before.
349    The file is created read-write (mask at least 0600 & ~umask), but it may be
350    world-readable and world-writable (mask 0666 & ~umask), depending on the
351    implementation.
352    Returns the open file descriptor if successful, otherwise -1 and errno
353    set.  */
354 # if !@HAVE_MKOSTEMPS@
355 _GL_FUNCDECL_SYS (mkostemps, int,
356                   (char * /*template*/, int /*suffixlen*/, int /*flags*/)
357                   _GL_ARG_NONNULL ((1)));
358 # endif
359 _GL_CXXALIAS_SYS (mkostemps, int,
360                   (char * /*template*/, int /*suffixlen*/, int /*flags*/));
361 _GL_CXXALIASWARN (mkostemps);
362 #elif defined GNULIB_POSIXCHECK
363 # undef mkostemps
364 # if HAVE_RAW_DECL_MKOSTEMPS
365 _GL_WARN_ON_USE (mkostemps, "mkostemps is unportable - "
366                  "use gnulib module mkostemps for portability");
367 # endif
368 #endif
369
370 #if @GNULIB_MKSTEMP@
371 /* Create a unique temporary file from TEMPLATE.
372    The last six characters of TEMPLATE must be "XXXXXX";
373    they are replaced with a string that makes the file name unique.
374    The file is then created, ensuring it didn't exist before.
375    The file is created read-write (mask at least 0600 & ~umask), but it may be
376    world-readable and world-writable (mask 0666 & ~umask), depending on the
377    implementation.
378    Returns the open file descriptor if successful, otherwise -1 and errno
379    set.  */
380 # if @REPLACE_MKSTEMP@
381 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
382 #   define mkstemp rpl_mkstemp
383 #  endif
384 _GL_FUNCDECL_RPL (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
385 _GL_CXXALIAS_RPL (mkstemp, int, (char * /*template*/));
386 # else
387 #  if ! @HAVE_MKSTEMP@
388 _GL_FUNCDECL_SYS (mkstemp, int, (char * /*template*/) _GL_ARG_NONNULL ((1)));
389 #  endif
390 _GL_CXXALIAS_SYS (mkstemp, int, (char * /*template*/));
391 # endif
392 _GL_CXXALIASWARN (mkstemp);
393 #elif defined GNULIB_POSIXCHECK
394 # undef mkstemp
395 # if HAVE_RAW_DECL_MKSTEMP
396 _GL_WARN_ON_USE (mkstemp, "mkstemp is unportable - "
397                  "use gnulib module mkstemp for portability");
398 # endif
399 #endif
400
401 #if @GNULIB_MKSTEMPS@
402 /* Create a unique temporary file from TEMPLATE.
403    The last six characters of TEMPLATE prior to a suffix of length
404    SUFFIXLEN must be "XXXXXX";
405    they are replaced with a string that makes the file name unique.
406    The file is then created, ensuring it didn't exist before.
407    The file is created read-write (mask at least 0600 & ~umask), but it may be
408    world-readable and world-writable (mask 0666 & ~umask), depending on the
409    implementation.
410    Returns the open file descriptor if successful, otherwise -1 and errno
411    set.  */
412 # if !@HAVE_MKSTEMPS@
413 _GL_FUNCDECL_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/)
414                                  _GL_ARG_NONNULL ((1)));
415 # endif
416 _GL_CXXALIAS_SYS (mkstemps, int, (char * /*template*/, int /*suffixlen*/));
417 _GL_CXXALIASWARN (mkstemps);
418 #elif defined GNULIB_POSIXCHECK
419 # undef mkstemps
420 # if HAVE_RAW_DECL_MKSTEMPS
421 _GL_WARN_ON_USE (mkstemps, "mkstemps is unportable - "
422                  "use gnulib module mkstemps for portability");
423 # endif
424 #endif
425
426 #if @GNULIB_POSIX_OPENPT@
427 /* Return an FD open to the master side of a pseudo-terminal.  Flags should
428    include O_RDWR, and may also include O_NOCTTY.  */
429 # if !@HAVE_POSIX_OPENPT@
430 _GL_FUNCDECL_SYS (posix_openpt, int, (int flags));
431 # endif
432 _GL_CXXALIAS_SYS (posix_openpt, int, (int flags));
433 _GL_CXXALIASWARN (posix_openpt);
434 #elif defined GNULIB_POSIXCHECK
435 # undef posix_openpt
436 # if HAVE_RAW_DECL_POSIX_OPENPT
437 _GL_WARN_ON_USE (posix_openpt, "posix_openpt is not portable - "
438                  "use gnulib module posix_openpt for portability");
439 # endif
440 #endif
441
442 #if @GNULIB_PTSNAME@
443 /* Return the pathname of the pseudo-terminal slave associated with
444    the master FD is open on, or NULL on errors.  */
445 # if !@HAVE_PTSNAME@
446 _GL_FUNCDECL_SYS (ptsname, char *, (int fd));
447 # endif
448 _GL_CXXALIAS_SYS (ptsname, char *, (int fd));
449 _GL_CXXALIASWARN (ptsname);
450 #elif defined GNULIB_POSIXCHECK
451 # undef ptsname
452 # if HAVE_RAW_DECL_PTSNAME
453 _GL_WARN_ON_USE (ptsname, "ptsname is not portable - "
454                  "use gnulib module ptsname for portability");
455 # endif
456 #endif
457
458 #if @GNULIB_PTSNAME_R@
459 /* Set the pathname of the pseudo-terminal slave associated with
460    the master FD is open on and return 0, or set errno and return
461    non-zero on errors.  */
462 # if @REPLACE_PTSNAME_R@
463 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
464 #   undef ptsname_r
465 #   define ptsname_r rpl_ptsname_r
466 #  endif
467 _GL_FUNCDECL_RPL (ptsname_r, int, (int fd, char *buf, size_t len));
468 _GL_CXXALIAS_RPL (ptsname_r, int, (int fd, char *buf, size_t len));
469 # else
470 #  if !@HAVE_PTSNAME_R@
471 _GL_FUNCDECL_SYS (ptsname_r, int, (int fd, char *buf, size_t len));
472 #  endif
473 _GL_CXXALIAS_SYS (ptsname_r, int, (int fd, char *buf, size_t len));
474 # endif
475 _GL_CXXALIASWARN (ptsname_r);
476 #elif defined GNULIB_POSIXCHECK
477 # undef ptsname_r
478 # if HAVE_RAW_DECL_PTSNAME_R
479 _GL_WARN_ON_USE (ptsname_r, "ptsname_r is not portable - "
480                  "use gnulib module ptsname_r for portability");
481 # endif
482 #endif
483
484 #if @GNULIB_PUTENV@
485 # if @REPLACE_PUTENV@
486 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
487 #   undef putenv
488 #   define putenv rpl_putenv
489 #  endif
490 _GL_FUNCDECL_RPL (putenv, int, (char *string) _GL_ARG_NONNULL ((1)));
491 _GL_CXXALIAS_RPL (putenv, int, (char *string));
492 # else
493 _GL_CXXALIAS_SYS (putenv, int, (char *string));
494 # endif
495 _GL_CXXALIASWARN (putenv);
496 #endif
497
498
499 #if @GNULIB_RANDOM_R@
500 # if !@HAVE_RANDOM_R@
501 #  ifndef RAND_MAX
502 #   define RAND_MAX 2147483647
503 #  endif
504 # endif
505 #endif
506
507 #if @GNULIB_RANDOM_R@
508 # if @REPLACE_RANDOM_R@
509 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
510 #   undef random_r
511 #   define random_r rpl_random_r
512 #  endif
513 _GL_FUNCDECL_RPL (random_r, int, (struct random_data *buf, int32_t *result)
514                                  _GL_ARG_NONNULL ((1, 2)));
515 _GL_CXXALIAS_RPL (random_r, int, (struct random_data *buf, int32_t *result));
516 # else
517 #  if !@HAVE_RANDOM_R@
518 _GL_FUNCDECL_SYS (random_r, int, (struct random_data *buf, int32_t *result)
519                                  _GL_ARG_NONNULL ((1, 2)));
520 #  endif
521 _GL_CXXALIAS_SYS (random_r, int, (struct random_data *buf, int32_t *result));
522 # endif
523 _GL_CXXALIASWARN (random_r);
524 #elif defined GNULIB_POSIXCHECK
525 # undef random_r
526 # if HAVE_RAW_DECL_RANDOM_R
527 _GL_WARN_ON_USE (random_r, "random_r is unportable - "
528                  "use gnulib module random_r for portability");
529 # endif
530 #endif
531
532 #if @GNULIB_RANDOM_R@
533 # if @REPLACE_RANDOM_R@
534 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
535 #   undef srandom_r
536 #   define srandom_r rpl_srandom_r
537 #  endif
538 _GL_FUNCDECL_RPL (srandom_r, int,
539                   (unsigned int seed, struct random_data *rand_state)
540                   _GL_ARG_NONNULL ((2)));
541 _GL_CXXALIAS_RPL (srandom_r, int,
542                   (unsigned int seed, struct random_data *rand_state));
543 # else
544 #  if !@HAVE_RANDOM_R@
545 _GL_FUNCDECL_SYS (srandom_r, int,
546                   (unsigned int seed, struct random_data *rand_state)
547                   _GL_ARG_NONNULL ((2)));
548 #  endif
549 _GL_CXXALIAS_SYS (srandom_r, int,
550                   (unsigned int seed, struct random_data *rand_state));
551 # endif
552 _GL_CXXALIASWARN (srandom_r);
553 #elif defined GNULIB_POSIXCHECK
554 # undef srandom_r
555 # if HAVE_RAW_DECL_SRANDOM_R
556 _GL_WARN_ON_USE (srandom_r, "srandom_r is unportable - "
557                  "use gnulib module random_r for portability");
558 # endif
559 #endif
560
561 #if @GNULIB_RANDOM_R@
562 # if @REPLACE_RANDOM_R@
563 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
564 #   undef initstate_r
565 #   define initstate_r rpl_initstate_r
566 #  endif
567 _GL_FUNCDECL_RPL (initstate_r, int,
568                   (unsigned int seed, char *buf, size_t buf_size,
569                    struct random_data *rand_state)
570                   _GL_ARG_NONNULL ((2, 4)));
571 _GL_CXXALIAS_RPL (initstate_r, int,
572                   (unsigned int seed, char *buf, size_t buf_size,
573                    struct random_data *rand_state));
574 # else
575 #  if !@HAVE_RANDOM_R@
576 _GL_FUNCDECL_SYS (initstate_r, int,
577                   (unsigned int seed, char *buf, size_t buf_size,
578                    struct random_data *rand_state)
579                   _GL_ARG_NONNULL ((2, 4)));
580 #  endif
581 _GL_CXXALIAS_SYS (initstate_r, int,
582                   (unsigned int seed, char *buf, size_t buf_size,
583                    struct random_data *rand_state));
584 # endif
585 _GL_CXXALIASWARN (initstate_r);
586 #elif defined GNULIB_POSIXCHECK
587 # undef initstate_r
588 # if HAVE_RAW_DECL_INITSTATE_R
589 _GL_WARN_ON_USE (initstate_r, "initstate_r is unportable - "
590                  "use gnulib module random_r for portability");
591 # endif
592 #endif
593
594 #if @GNULIB_RANDOM_R@
595 # if @REPLACE_RANDOM_R@
596 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
597 #   undef setstate_r
598 #   define setstate_r rpl_setstate_r
599 #  endif
600 _GL_FUNCDECL_RPL (setstate_r, int,
601                   (char *arg_state, struct random_data *rand_state)
602                   _GL_ARG_NONNULL ((1, 2)));
603 _GL_CXXALIAS_RPL (setstate_r, int,
604                   (char *arg_state, struct random_data *rand_state));
605 # else
606 #  if !@HAVE_RANDOM_R@
607 _GL_FUNCDECL_SYS (setstate_r, int,
608                   (char *arg_state, struct random_data *rand_state)
609                   _GL_ARG_NONNULL ((1, 2)));
610 #  endif
611 _GL_CXXALIAS_SYS (setstate_r, int,
612                   (char *arg_state, struct random_data *rand_state));
613 # endif
614 _GL_CXXALIASWARN (setstate_r);
615 #elif defined GNULIB_POSIXCHECK
616 # undef setstate_r
617 # if HAVE_RAW_DECL_SETSTATE_R
618 _GL_WARN_ON_USE (setstate_r, "setstate_r is unportable - "
619                  "use gnulib module random_r for portability");
620 # endif
621 #endif
622
623
624 #if @GNULIB_REALLOC_POSIX@
625 # if @REPLACE_REALLOC@
626 #  if !((defined __cplusplus && defined GNULIB_NAMESPACE) \
627         || _GL_USE_STDLIB_ALLOC)
628 #   undef realloc
629 #   define realloc rpl_realloc
630 #  endif
631 _GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));
632 _GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));
633 # else
634 _GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));
635 # endif
636 _GL_CXXALIASWARN (realloc);
637 #elif defined GNULIB_POSIXCHECK && !_GL_USE_STDLIB_ALLOC
638 # undef realloc
639 /* Assume realloc is always declared.  */
640 _GL_WARN_ON_USE (realloc, "realloc is not POSIX compliant everywhere - "
641                  "use gnulib module realloc-posix for portability");
642 #endif
643
644 #if @GNULIB_REALPATH@
645 # if @REPLACE_REALPATH@
646 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
647 #   define realpath rpl_realpath
648 #  endif
649 _GL_FUNCDECL_RPL (realpath, char *, (const char *name, char *resolved)
650                                     _GL_ARG_NONNULL ((1)));
651 _GL_CXXALIAS_RPL (realpath, char *, (const char *name, char *resolved));
652 # else
653 #  if !@HAVE_REALPATH@
654 _GL_FUNCDECL_SYS (realpath, char *, (const char *name, char *resolved)
655                                     _GL_ARG_NONNULL ((1)));
656 #  endif
657 _GL_CXXALIAS_SYS (realpath, char *, (const char *name, char *resolved));
658 # endif
659 _GL_CXXALIASWARN (realpath);
660 #elif defined GNULIB_POSIXCHECK
661 # undef realpath
662 # if HAVE_RAW_DECL_REALPATH
663 _GL_WARN_ON_USE (realpath, "realpath is unportable - use gnulib module "
664                  "canonicalize or canonicalize-lgpl for portability");
665 # endif
666 #endif
667
668 #if @GNULIB_RPMATCH@
669 /* Test a user response to a question.
670    Return 1 if it is affirmative, 0 if it is negative, or -1 if not clear.  */
671 # if !@HAVE_RPMATCH@
672 _GL_FUNCDECL_SYS (rpmatch, int, (const char *response) _GL_ARG_NONNULL ((1)));
673 # endif
674 _GL_CXXALIAS_SYS (rpmatch, int, (const char *response));
675 _GL_CXXALIASWARN (rpmatch);
676 #elif defined GNULIB_POSIXCHECK
677 # undef rpmatch
678 # if HAVE_RAW_DECL_RPMATCH
679 _GL_WARN_ON_USE (rpmatch, "rpmatch is unportable - "
680                  "use gnulib module rpmatch for portability");
681 # endif
682 #endif
683
684 #if @GNULIB_SETENV@
685 /* Set NAME to VALUE in the environment.
686    If REPLACE is nonzero, overwrite an existing value.  */
687 # if @REPLACE_SETENV@
688 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
689 #   undef setenv
690 #   define setenv rpl_setenv
691 #  endif
692 _GL_FUNCDECL_RPL (setenv, int,
693                   (const char *name, const char *value, int replace)
694                   _GL_ARG_NONNULL ((1)));
695 _GL_CXXALIAS_RPL (setenv, int,
696                   (const char *name, const char *value, int replace));
697 # else
698 #  if !@HAVE_DECL_SETENV@
699 _GL_FUNCDECL_SYS (setenv, int,
700                   (const char *name, const char *value, int replace)
701                   _GL_ARG_NONNULL ((1)));
702 #  endif
703 _GL_CXXALIAS_SYS (setenv, int,
704                   (const char *name, const char *value, int replace));
705 # endif
706 # if !(@REPLACE_SETENV@ && !@HAVE_DECL_SETENV@)
707 _GL_CXXALIASWARN (setenv);
708 # endif
709 #elif defined GNULIB_POSIXCHECK
710 # undef setenv
711 # if HAVE_RAW_DECL_SETENV
712 _GL_WARN_ON_USE (setenv, "setenv is unportable - "
713                  "use gnulib module setenv for portability");
714 # endif
715 #endif
716
717 #if @GNULIB_STRTOD@
718  /* Parse a double from STRING, updating ENDP if appropriate.  */
719 # if @REPLACE_STRTOD@
720 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
721 #   define strtod rpl_strtod
722 #  endif
723 _GL_FUNCDECL_RPL (strtod, double, (const char *str, char **endp)
724                                   _GL_ARG_NONNULL ((1)));
725 _GL_CXXALIAS_RPL (strtod, double, (const char *str, char **endp));
726 # else
727 #  if !@HAVE_STRTOD@
728 _GL_FUNCDECL_SYS (strtod, double, (const char *str, char **endp)
729                                   _GL_ARG_NONNULL ((1)));
730 #  endif
731 _GL_CXXALIAS_SYS (strtod, double, (const char *str, char **endp));
732 # endif
733 _GL_CXXALIASWARN (strtod);
734 #elif defined GNULIB_POSIXCHECK
735 # undef strtod
736 # if HAVE_RAW_DECL_STRTOD
737 _GL_WARN_ON_USE (strtod, "strtod is unportable - "
738                  "use gnulib module strtod for portability");
739 # endif
740 #endif
741
742 #if @GNULIB_STRTOLL@
743 /* Parse a signed integer whose textual representation starts at STRING.
744    The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,
745    it may be decimal or octal (with prefix "0") or hexadecimal (with prefix
746    "0x").
747    If ENDPTR is not NULL, the address of the first byte after the integer is
748    stored in *ENDPTR.
749    Upon overflow, the return value is LLONG_MAX or LLONG_MIN, and errno is set
750    to ERANGE.  */
751 # if !@HAVE_STRTOLL@
752 _GL_FUNCDECL_SYS (strtoll, long long,
753                   (const char *string, char **endptr, int base)
754                   _GL_ARG_NONNULL ((1)));
755 # endif
756 _GL_CXXALIAS_SYS (strtoll, long long,
757                   (const char *string, char **endptr, int base));
758 _GL_CXXALIASWARN (strtoll);
759 #elif defined GNULIB_POSIXCHECK
760 # undef strtoll
761 # if HAVE_RAW_DECL_STRTOLL
762 _GL_WARN_ON_USE (strtoll, "strtoll is unportable - "
763                  "use gnulib module strtoll for portability");
764 # endif
765 #endif
766
767 #if @GNULIB_STRTOULL@
768 /* Parse an unsigned integer whose textual representation starts at STRING.
769    The integer is expected to be in base BASE (2 <= BASE <= 36); if BASE == 0,
770    it may be decimal or octal (with prefix "0") or hexadecimal (with prefix
771    "0x").
772    If ENDPTR is not NULL, the address of the first byte after the integer is
773    stored in *ENDPTR.
774    Upon overflow, the return value is ULLONG_MAX, and errno is set to
775    ERANGE.  */
776 # if !@HAVE_STRTOULL@
777 _GL_FUNCDECL_SYS (strtoull, unsigned long long,
778                   (const char *string, char **endptr, int base)
779                   _GL_ARG_NONNULL ((1)));
780 # endif
781 _GL_CXXALIAS_SYS (strtoull, unsigned long long,
782                   (const char *string, char **endptr, int base));
783 _GL_CXXALIASWARN (strtoull);
784 #elif defined GNULIB_POSIXCHECK
785 # undef strtoull
786 # if HAVE_RAW_DECL_STRTOULL
787 _GL_WARN_ON_USE (strtoull, "strtoull is unportable - "
788                  "use gnulib module strtoull for portability");
789 # endif
790 #endif
791
792 #if @GNULIB_UNLOCKPT@
793 /* Unlock the slave side of the pseudo-terminal whose master side is specified
794    by FD, so that it can be opened.  */
795 # if !@HAVE_UNLOCKPT@
796 _GL_FUNCDECL_SYS (unlockpt, int, (int fd));
797 # endif
798 _GL_CXXALIAS_SYS (unlockpt, int, (int fd));
799 _GL_CXXALIASWARN (unlockpt);
800 #elif defined GNULIB_POSIXCHECK
801 # undef unlockpt
802 # if HAVE_RAW_DECL_UNLOCKPT
803 _GL_WARN_ON_USE (unlockpt, "unlockpt is not portable - "
804                  "use gnulib module unlockpt for portability");
805 # endif
806 #endif
807
808 #if @GNULIB_UNSETENV@
809 /* Remove the variable NAME from the environment.  */
810 # if @REPLACE_UNSETENV@
811 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
812 #   undef unsetenv
813 #   define unsetenv rpl_unsetenv
814 #  endif
815 _GL_FUNCDECL_RPL (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1)));
816 _GL_CXXALIAS_RPL (unsetenv, int, (const char *name));
817 # else
818 #  if !@HAVE_DECL_UNSETENV@
819 _GL_FUNCDECL_SYS (unsetenv, int, (const char *name) _GL_ARG_NONNULL ((1)));
820 #  endif
821 _GL_CXXALIAS_SYS (unsetenv, int, (const char *name));
822 # endif
823 # if !(@REPLACE_UNSETENV@ && !@HAVE_DECL_UNSETENV@)
824 _GL_CXXALIASWARN (unsetenv);
825 # endif
826 #elif defined GNULIB_POSIXCHECK
827 # undef unsetenv
828 # if HAVE_RAW_DECL_UNSETENV
829 _GL_WARN_ON_USE (unsetenv, "unsetenv is unportable - "
830                  "use gnulib module unsetenv for portability");
831 # endif
832 #endif
833
834 /* Convert a wide character to a multibyte character.  */
835 #if @GNULIB_WCTOMB@
836 # if @REPLACE_WCTOMB@
837 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
838 #   undef wctomb
839 #   define wctomb rpl_wctomb
840 #  endif
841 _GL_FUNCDECL_RPL (wctomb, int, (char *s, wchar_t wc));
842 _GL_CXXALIAS_RPL (wctomb, int, (char *s, wchar_t wc));
843 # else
844 _GL_CXXALIAS_SYS (wctomb, int, (char *s, wchar_t wc));
845 # endif
846 _GL_CXXALIASWARN (wctomb);
847 #endif
848
849
850 #endif /* _@GUARD_PREFIX@_STDLIB_H */
851 #endif /* _@GUARD_PREFIX@_STDLIB_H */
852 #endif