gnulib: update to 776af40e0
[deliverable/binutils-gdb.git] / gnulib / import / stdio.in.h
CommitLineData
6a29c58e
YQ
1/* A GNU-like <stdio.h>.
2
9c9d63b1 3 Copyright (C) 2004, 2007-2021 Free Software Foundation, Inc.
6a29c58e
YQ
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, or (at your option)
8 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
c0c3707f 16 along with this program; if not, see <https://www.gnu.org/licenses/>. */
6a29c58e
YQ
17
18#if __GNUC__ >= 3
19@PRAGMA_SYSTEM_HEADER@
20#endif
21@PRAGMA_COLUMNS@
22
23#if defined __need_FILE || defined __need___FILE || defined _GL_ALREADY_INCLUDING_STDIO_H
24/* Special invocation convention:
25 - Inside glibc header files.
26 - On OSF/1 5.1 we have a sequence of nested includes
27 <stdio.h> -> <getopt.h> -> <ctype.h> -> <sys/localedef.h> ->
28 <sys/lc_core.h> -> <nl_types.h> -> <mesg.h> -> <stdio.h>.
29 In this situation, the functions are not yet declared, therefore we cannot
30 provide the C++ aliases. */
31
32#@INCLUDE_NEXT@ @NEXT_STDIO_H@
33
34#else
35/* Normal invocation convention. */
36
37#ifndef _@GUARD_PREFIX@_STDIO_H
38
39#define _GL_ALREADY_INCLUDING_STDIO_H
40
41/* The include_next requires a split double-inclusion guard. */
42#@INCLUDE_NEXT@ @NEXT_STDIO_H@
43
44#undef _GL_ALREADY_INCLUDING_STDIO_H
45
46#ifndef _@GUARD_PREFIX@_STDIO_H
47#define _@GUARD_PREFIX@_STDIO_H
48
6a29c58e
YQ
49/* Get va_list. Needed on many systems, including glibc 2.8. */
50#include <stdarg.h>
51
52#include <stddef.h>
53
54/* Get off_t and ssize_t. Needed on many systems, including glibc 2.8
55 and eglibc 2.11.2.
56 May also define off_t to a 64-bit type on native Windows. */
57#include <sys/types.h>
58
59/* The __attribute__ feature is available in gcc versions 2.5 and later.
60 The __-protected variants of the attributes 'format' and 'printf' are
61 accepted by gcc versions 2.6.4 (effectively 2.7) and later.
62 We enable _GL_ATTRIBUTE_FORMAT only if these are supported too, because
63 gnulib and libintl do '#define printf __printf__' when they override
64 the 'printf' function. */
698be2d8 65#ifndef _GL_ATTRIBUTE_FORMAT
9c9d63b1 66# if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) || defined __clang__
698be2d8
CB
67# define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
68# else
69# define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
70# endif
6a29c58e
YQ
71#endif
72
9c9d63b1
PM
73/* An __attribute__ __format__ specifier for a function that takes a format
74 string and arguments, where the format string directives are the ones
75 standardized by ISO C99 and POSIX.
76 _GL_ATTRIBUTE_SPEC_PRINTF_STANDARD */
77/* __gnu_printf__ is supported in GCC >= 4.4. */
6a29c58e 78#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
9c9d63b1 79# define _GL_ATTRIBUTE_SPEC_PRINTF_STANDARD __gnu_printf__
6a29c58e 80#else
9c9d63b1 81# define _GL_ATTRIBUTE_SPEC_PRINTF_STANDARD __printf__
6a29c58e
YQ
82#endif
83
9c9d63b1
PM
84/* An __attribute__ __format__ specifier for a function that takes a format
85 string and arguments, where the format string directives are the ones of the
86 system printf(), rather than the ones standardized by ISO C99 and POSIX.
87 _GL_ATTRIBUTE_SPEC_PRINTF_SYSTEM */
88/* On mingw, Gnulib sets __USE_MINGW_ANSI_STDIO in order to get closer to
89 the standards. The macro GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU indicates
90 whether this change is effective. On older mingw, it is not. */
4a626d0a 91#if GNULIB_PRINTF_ATTRIBUTE_FLAVOR_GNU
9c9d63b1 92# define _GL_ATTRIBUTE_SPEC_PRINTF_SYSTEM _GL_ATTRIBUTE_SPEC_PRINTF_STANDARD
4a626d0a 93#else
9c9d63b1 94# define _GL_ATTRIBUTE_SPEC_PRINTF_SYSTEM __printf__
4a626d0a 95#endif
6a29c58e 96
9c9d63b1
PM
97/* _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD
98 indicates to GCC that the function takes a format string and arguments,
99 where the format string directives are the ones standardized by ISO C99
100 and POSIX. */
101#define _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD(formatstring_parameter, first_argument) \
102 _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF_STANDARD, formatstring_parameter, first_argument))
103
104/* _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD,
105 except that it indicates to GCC that the supported format string directives
106 are the ones of the system printf(), rather than the ones standardized by
107 ISO C99 and POSIX. */
108#define _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM(formatstring_parameter, first_argument) \
109 _GL_ATTRIBUTE_FORMAT ((_GL_ATTRIBUTE_SPEC_PRINTF_SYSTEM, formatstring_parameter, first_argument))
110
6a29c58e
YQ
111/* _GL_ATTRIBUTE_FORMAT_SCANF
112 indicates to GCC that the function takes a format string and arguments,
113 where the format string directives are the ones standardized by ISO C99
114 and POSIX. */
115#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
116# define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \
117 _GL_ATTRIBUTE_FORMAT ((__gnu_scanf__, formatstring_parameter, first_argument))
118#else
119# define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \
120 _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))
121#endif
122
123/* _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_SCANF,
124 except that it indicates to GCC that the supported format string directives
125 are the ones of the system scanf(), rather than the ones standardized by
126 ISO C99 and POSIX. */
127#define _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM(formatstring_parameter, first_argument) \
128 _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))
129
c0c3707f 130/* Solaris 10 and NetBSD 7.0 declare renameat in <unistd.h>, not in <stdio.h>. */
6a29c58e 131/* But in any case avoid namespace pollution on glibc systems. */
c0c3707f 132#if (@GNULIB_RENAMEAT@ || defined GNULIB_POSIXCHECK) && (defined __sun || defined __NetBSD__) \
6a29c58e
YQ
133 && ! defined __GLIBC__
134# include <unistd.h>
135#endif
136
c0c3707f
CB
137/* Android 4.3 declares renameat in <sys/stat.h>, not in <stdio.h>. */
138/* But in any case avoid namespace pollution on glibc systems. */
139#if (@GNULIB_RENAMEAT@ || defined GNULIB_POSIXCHECK) && defined __ANDROID__ \
140 && ! defined __GLIBC__
141# include <sys/stat.h>
142#endif
143
144/* MSVC declares 'perror' in <stdlib.h>, not in <stdio.h>. We must include
145 it before we #define perror rpl_perror. */
146/* But in any case avoid namespace pollution on glibc systems. */
147#if (@GNULIB_PERROR@ || defined GNULIB_POSIXCHECK) \
148 && (defined _WIN32 && ! defined __CYGWIN__) \
149 && ! defined __GLIBC__
150# include <stdlib.h>
151#endif
152
153/* MSVC declares 'remove' in <io.h>, not in <stdio.h>. We must include
154 it before we #define remove rpl_remove. */
155/* MSVC declares 'rename' in <io.h>, not in <stdio.h>. We must include
156 it before we #define rename rpl_rename. */
157/* But in any case avoid namespace pollution on glibc systems. */
158#if (@GNULIB_REMOVE@ || @GNULIB_RENAME@ || defined GNULIB_POSIXCHECK) \
159 && (defined _WIN32 && ! defined __CYGWIN__) \
160 && ! defined __GLIBC__
161# include <io.h>
162#endif
163
6a29c58e
YQ
164
165/* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
166
167/* The definition of _GL_ARG_NONNULL is copied here. */
168
169/* The definition of _GL_WARN_ON_USE is copied here. */
170
171/* Macros for stringification. */
172#define _GL_STDIO_STRINGIZE(token) #token
173#define _GL_STDIO_MACROEXPAND_AND_STRINGIZE(token) _GL_STDIO_STRINGIZE(token)
174
4a626d0a
PA
175/* When also using extern inline, suppress the use of static inline in
176 standard headers of problematic Apple configurations, as Libc at
177 least through Libc-825.26 (2013-04-09) mishandles it; see, e.g.,
c0c3707f 178 <https://lists.gnu.org/r/bug-gnulib/2012-12/msg00023.html>.
4a626d0a
PA
179 Perhaps Apple will fix this some day. */
180#if (defined _GL_EXTERN_INLINE_IN_USE && defined __APPLE__ \
181 && defined __GNUC__ && defined __STDC__)
182# undef putc_unlocked
183#endif
6a29c58e
YQ
184
185#if @GNULIB_DPRINTF@
186# if @REPLACE_DPRINTF@
187# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
188# define dprintf rpl_dprintf
189# endif
698be2d8 190_GL_FUNCDECL_RPL (dprintf, int, (int fd, const char *restrict format, ...)
9c9d63b1 191 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
6a29c58e 192 _GL_ARG_NONNULL ((2)));
698be2d8 193_GL_CXXALIAS_RPL (dprintf, int, (int fd, const char *restrict format, ...));
6a29c58e
YQ
194# else
195# if !@HAVE_DPRINTF@
698be2d8 196_GL_FUNCDECL_SYS (dprintf, int, (int fd, const char *restrict format, ...)
9c9d63b1 197 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
6a29c58e
YQ
198 _GL_ARG_NONNULL ((2)));
199# endif
698be2d8 200_GL_CXXALIAS_SYS (dprintf, int, (int fd, const char *restrict format, ...));
6a29c58e
YQ
201# endif
202_GL_CXXALIASWARN (dprintf);
203#elif defined GNULIB_POSIXCHECK
204# undef dprintf
205# if HAVE_RAW_DECL_DPRINTF
206_GL_WARN_ON_USE (dprintf, "dprintf is unportable - "
207 "use gnulib module dprintf for portability");
208# endif
209#endif
210
211#if @GNULIB_FCLOSE@
212/* Close STREAM and its underlying file descriptor. */
213# if @REPLACE_FCLOSE@
214# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
215# define fclose rpl_fclose
216# endif
217_GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
218_GL_CXXALIAS_RPL (fclose, int, (FILE *stream));
219# else
220_GL_CXXALIAS_SYS (fclose, int, (FILE *stream));
221# endif
c0c3707f 222# if __GLIBC__ >= 2
6a29c58e 223_GL_CXXALIASWARN (fclose);
c0c3707f 224# endif
6a29c58e
YQ
225#elif defined GNULIB_POSIXCHECK
226# undef fclose
227/* Assume fclose is always declared. */
228_GL_WARN_ON_USE (fclose, "fclose is not always POSIX compliant - "
229 "use gnulib module fclose for portable POSIX compliance");
230#endif
231
9c9d63b1
PM
232#if @GNULIB_MDA_FCLOSEALL@
233/* On native Windows, map 'fcloseall' to '_fcloseall', so that -loldnames is
234 not required. In C++ with GNULIB_NAMESPACE, avoid differences between
235 platforms by defining GNULIB_NAMESPACE::fcloseall on all platforms that have
236 it. */
237# if defined _WIN32 && !defined __CYGWIN__
238# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
239# undef fcloseall
240# define fcloseall _fcloseall
241# endif
242_GL_CXXALIAS_MDA (fcloseall, int, (void));
243# else
244# if @HAVE_DECL_FCLOSEALL@
245# if defined __FreeBSD__
246_GL_CXXALIAS_SYS (fcloseall, void, (void));
247# else
248_GL_CXXALIAS_SYS (fcloseall, int, (void));
249# endif
250# endif
251# endif
252# if (defined _WIN32 && !defined __CYGWIN__) || @HAVE_DECL_FCLOSEALL@
253_GL_CXXALIASWARN (fcloseall);
254# endif
255#endif
256
6a29c58e
YQ
257#if @GNULIB_FDOPEN@
258# if @REPLACE_FDOPEN@
259# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
260# undef fdopen
261# define fdopen rpl_fdopen
262# endif
263_GL_FUNCDECL_RPL (fdopen, FILE *, (int fd, const char *mode)
264 _GL_ARG_NONNULL ((2)));
265_GL_CXXALIAS_RPL (fdopen, FILE *, (int fd, const char *mode));
9c9d63b1
PM
266# elif defined _WIN32 && !defined __CYGWIN__
267# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
268# undef fdopen
269# define fdopen _fdopen
270# endif
271_GL_CXXALIAS_MDA (fdopen, FILE *, (int fd, const char *mode));
6a29c58e
YQ
272# else
273_GL_CXXALIAS_SYS (fdopen, FILE *, (int fd, const char *mode));
274# endif
275_GL_CXXALIASWARN (fdopen);
276#elif defined GNULIB_POSIXCHECK
277# undef fdopen
278/* Assume fdopen is always declared. */
279_GL_WARN_ON_USE (fdopen, "fdopen on native Windows platforms is not POSIX compliant - "
280 "use gnulib module fdopen for portability");
9c9d63b1
PM
281#elif @GNULIB_MDA_FDOPEN@
282/* On native Windows, map 'fdopen' to '_fdopen', so that -loldnames is not
283 required. In C++ with GNULIB_NAMESPACE, avoid differences between
284 platforms by defining GNULIB_NAMESPACE::fdopen always. */
285# if defined _WIN32 && !defined __CYGWIN__
286# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
287# undef fdopen
288# define fdopen _fdopen
289# endif
290_GL_CXXALIAS_MDA (fdopen, FILE *, (int fd, const char *mode));
291# else
292_GL_CXXALIAS_SYS (fdopen, FILE *, (int fd, const char *mode));
293# endif
294_GL_CXXALIASWARN (fdopen);
6a29c58e
YQ
295#endif
296
297#if @GNULIB_FFLUSH@
298/* Flush all pending data on STREAM according to POSIX rules. Both
299 output and seekable input streams are supported.
300 Note! LOSS OF DATA can occur if fflush is applied on an input stream
301 that is _not_seekable_ or on an update stream that is _not_seekable_
302 and in which the most recent operation was input. Seekability can
303 be tested with lseek(fileno(fp),0,SEEK_CUR). */
304# if @REPLACE_FFLUSH@
305# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
306# define fflush rpl_fflush
307# endif
308_GL_FUNCDECL_RPL (fflush, int, (FILE *gl_stream));
309_GL_CXXALIAS_RPL (fflush, int, (FILE *gl_stream));
310# else
311_GL_CXXALIAS_SYS (fflush, int, (FILE *gl_stream));
312# endif
c0c3707f 313# if __GLIBC__ >= 2
6a29c58e 314_GL_CXXALIASWARN (fflush);
c0c3707f 315# endif
6a29c58e
YQ
316#elif defined GNULIB_POSIXCHECK
317# undef fflush
318/* Assume fflush is always declared. */
319_GL_WARN_ON_USE (fflush, "fflush is not always POSIX compliant - "
320 "use gnulib module fflush for portable POSIX compliance");
321#endif
322
323#if @GNULIB_FGETC@
324# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
325# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
326# undef fgetc
327# define fgetc rpl_fgetc
328# endif
329_GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
330_GL_CXXALIAS_RPL (fgetc, int, (FILE *stream));
331# else
332_GL_CXXALIAS_SYS (fgetc, int, (FILE *stream));
333# endif
c0c3707f 334# if __GLIBC__ >= 2
6a29c58e 335_GL_CXXALIASWARN (fgetc);
c0c3707f 336# endif
6a29c58e
YQ
337#endif
338
339#if @GNULIB_FGETS@
340# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
341# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
342# undef fgets
343# define fgets rpl_fgets
344# endif
698be2d8
CB
345_GL_FUNCDECL_RPL (fgets, char *,
346 (char *restrict s, int n, FILE *restrict stream)
347 _GL_ARG_NONNULL ((1, 3)));
348_GL_CXXALIAS_RPL (fgets, char *,
349 (char *restrict s, int n, FILE *restrict stream));
6a29c58e 350# else
698be2d8
CB
351_GL_CXXALIAS_SYS (fgets, char *,
352 (char *restrict s, int n, FILE *restrict stream));
6a29c58e 353# endif
c0c3707f 354# if __GLIBC__ >= 2
6a29c58e 355_GL_CXXALIASWARN (fgets);
c0c3707f 356# endif
6a29c58e
YQ
357#endif
358
9c9d63b1
PM
359#if @GNULIB_MDA_FILENO@
360/* On native Windows, map 'fileno' to '_fileno', so that -loldnames is not
361 required. In C++ with GNULIB_NAMESPACE, avoid differences between
362 platforms by defining GNULIB_NAMESPACE::fileno always. */
363# if defined _WIN32 && !defined __CYGWIN__
364# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
365# undef fileno
366# define fileno _fileno
367# endif
368_GL_CXXALIAS_MDA (fileno, int, (FILE *restrict stream));
369# else
370_GL_CXXALIAS_SYS (fileno, int, (FILE *restrict stream));
371# endif
372_GL_CXXALIASWARN (fileno);
373#endif
374
6a29c58e
YQ
375#if @GNULIB_FOPEN@
376# if @REPLACE_FOPEN@
377# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
378# undef fopen
379# define fopen rpl_fopen
380# endif
698be2d8
CB
381_GL_FUNCDECL_RPL (fopen, FILE *,
382 (const char *restrict filename, const char *restrict mode)
383 _GL_ARG_NONNULL ((1, 2)));
384_GL_CXXALIAS_RPL (fopen, FILE *,
385 (const char *restrict filename, const char *restrict mode));
6a29c58e 386# else
698be2d8
CB
387_GL_CXXALIAS_SYS (fopen, FILE *,
388 (const char *restrict filename, const char *restrict mode));
6a29c58e 389# endif
c0c3707f 390# if __GLIBC__ >= 2
6a29c58e 391_GL_CXXALIASWARN (fopen);
c0c3707f 392# endif
6a29c58e
YQ
393#elif defined GNULIB_POSIXCHECK
394# undef fopen
395/* Assume fopen is always declared. */
396_GL_WARN_ON_USE (fopen, "fopen on native Windows platforms is not POSIX compliant - "
397 "use gnulib module fopen for portability");
398#endif
399
400#if @GNULIB_FPRINTF_POSIX@ || @GNULIB_FPRINTF@
401# if (@GNULIB_FPRINTF_POSIX@ && @REPLACE_FPRINTF@) \
402 || (@GNULIB_FPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
403# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
404# define fprintf rpl_fprintf
405# endif
406# define GNULIB_overrides_fprintf 1
407# if @GNULIB_FPRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@
698be2d8
CB
408_GL_FUNCDECL_RPL (fprintf, int,
409 (FILE *restrict fp, const char *restrict format, ...)
9c9d63b1 410 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
698be2d8 411 _GL_ARG_NONNULL ((1, 2)));
6a29c58e 412# else
698be2d8
CB
413_GL_FUNCDECL_RPL (fprintf, int,
414 (FILE *restrict fp, const char *restrict format, ...)
415 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 3)
416 _GL_ARG_NONNULL ((1, 2)));
6a29c58e 417# endif
698be2d8
CB
418_GL_CXXALIAS_RPL (fprintf, int,
419 (FILE *restrict fp, const char *restrict format, ...));
6a29c58e 420# else
698be2d8
CB
421_GL_CXXALIAS_SYS (fprintf, int,
422 (FILE *restrict fp, const char *restrict format, ...));
6a29c58e 423# endif
c0c3707f 424# if __GLIBC__ >= 2
6a29c58e 425_GL_CXXALIASWARN (fprintf);
c0c3707f 426# endif
6a29c58e
YQ
427#endif
428#if !@GNULIB_FPRINTF_POSIX@ && defined GNULIB_POSIXCHECK
429# if !GNULIB_overrides_fprintf
430# undef fprintf
431# endif
432/* Assume fprintf is always declared. */
433_GL_WARN_ON_USE (fprintf, "fprintf is not always POSIX compliant - "
434 "use gnulib module fprintf-posix for portable "
435 "POSIX compliance");
436#endif
437
438#if @GNULIB_FPURGE@
439/* Discard all pending buffered I/O data on STREAM.
440 STREAM must not be wide-character oriented.
441 When discarding pending output, the file position is set back to where it
442 was before the write calls. When discarding pending input, the file
443 position is advanced to match the end of the previously read input.
444 Return 0 if successful. Upon error, return -1 and set errno. */
445# if @REPLACE_FPURGE@
446# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
447# define fpurge rpl_fpurge
448# endif
449_GL_FUNCDECL_RPL (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));
450_GL_CXXALIAS_RPL (fpurge, int, (FILE *gl_stream));
451# else
452# if !@HAVE_DECL_FPURGE@
453_GL_FUNCDECL_SYS (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));
454# endif
455_GL_CXXALIAS_SYS (fpurge, int, (FILE *gl_stream));
456# endif
457_GL_CXXALIASWARN (fpurge);
458#elif defined GNULIB_POSIXCHECK
459# undef fpurge
460# if HAVE_RAW_DECL_FPURGE
461_GL_WARN_ON_USE (fpurge, "fpurge is not always present - "
462 "use gnulib module fpurge for portability");
463# endif
464#endif
465
466#if @GNULIB_FPUTC@
467# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
468# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
469# undef fputc
470# define fputc rpl_fputc
471# endif
472_GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
473_GL_CXXALIAS_RPL (fputc, int, (int c, FILE *stream));
474# else
475_GL_CXXALIAS_SYS (fputc, int, (int c, FILE *stream));
476# endif
c0c3707f 477# if __GLIBC__ >= 2
6a29c58e 478_GL_CXXALIASWARN (fputc);
c0c3707f 479# endif
6a29c58e
YQ
480#endif
481
482#if @GNULIB_FPUTS@
483# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
484# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
485# undef fputs
486# define fputs rpl_fputs
487# endif
698be2d8
CB
488_GL_FUNCDECL_RPL (fputs, int,
489 (const char *restrict string, FILE *restrict stream)
490 _GL_ARG_NONNULL ((1, 2)));
491_GL_CXXALIAS_RPL (fputs, int,
492 (const char *restrict string, FILE *restrict stream));
6a29c58e 493# else
698be2d8
CB
494_GL_CXXALIAS_SYS (fputs, int,
495 (const char *restrict string, FILE *restrict stream));
6a29c58e 496# endif
c0c3707f 497# if __GLIBC__ >= 2
6a29c58e 498_GL_CXXALIASWARN (fputs);
c0c3707f 499# endif
6a29c58e
YQ
500#endif
501
502#if @GNULIB_FREAD@
503# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
504# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
505# undef fread
506# define fread rpl_fread
507# endif
698be2d8
CB
508_GL_FUNCDECL_RPL (fread, size_t,
509 (void *restrict ptr, size_t s, size_t n,
510 FILE *restrict stream)
511 _GL_ARG_NONNULL ((4)));
512_GL_CXXALIAS_RPL (fread, size_t,
513 (void *restrict ptr, size_t s, size_t n,
514 FILE *restrict stream));
6a29c58e 515# else
698be2d8
CB
516_GL_CXXALIAS_SYS (fread, size_t,
517 (void *restrict ptr, size_t s, size_t n,
518 FILE *restrict stream));
6a29c58e 519# endif
c0c3707f 520# if __GLIBC__ >= 2
6a29c58e 521_GL_CXXALIASWARN (fread);
c0c3707f 522# endif
6a29c58e
YQ
523#endif
524
525#if @GNULIB_FREOPEN@
526# if @REPLACE_FREOPEN@
527# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
528# undef freopen
529# define freopen rpl_freopen
530# endif
531_GL_FUNCDECL_RPL (freopen, FILE *,
698be2d8
CB
532 (const char *restrict filename, const char *restrict mode,
533 FILE *restrict stream)
6a29c58e
YQ
534 _GL_ARG_NONNULL ((2, 3)));
535_GL_CXXALIAS_RPL (freopen, FILE *,
698be2d8
CB
536 (const char *restrict filename, const char *restrict mode,
537 FILE *restrict stream));
6a29c58e
YQ
538# else
539_GL_CXXALIAS_SYS (freopen, FILE *,
698be2d8
CB
540 (const char *restrict filename, const char *restrict mode,
541 FILE *restrict stream));
6a29c58e 542# endif
c0c3707f 543# if __GLIBC__ >= 2
6a29c58e 544_GL_CXXALIASWARN (freopen);
c0c3707f 545# endif
6a29c58e
YQ
546#elif defined GNULIB_POSIXCHECK
547# undef freopen
548/* Assume freopen is always declared. */
549_GL_WARN_ON_USE (freopen,
550 "freopen on native Windows platforms is not POSIX compliant - "
551 "use gnulib module freopen for portability");
552#endif
553
554#if @GNULIB_FSCANF@
555# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
556# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
557# undef fscanf
558# define fscanf rpl_fscanf
559# endif
698be2d8
CB
560_GL_FUNCDECL_RPL (fscanf, int,
561 (FILE *restrict stream, const char *restrict format, ...)
562 _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 3)
563 _GL_ARG_NONNULL ((1, 2)));
564_GL_CXXALIAS_RPL (fscanf, int,
565 (FILE *restrict stream, const char *restrict format, ...));
6a29c58e 566# else
698be2d8
CB
567_GL_CXXALIAS_SYS (fscanf, int,
568 (FILE *restrict stream, const char *restrict format, ...));
6a29c58e 569# endif
c0c3707f 570# if __GLIBC__ >= 2
6a29c58e 571_GL_CXXALIASWARN (fscanf);
c0c3707f 572# endif
6a29c58e
YQ
573#endif
574
575
576/* Set up the following warnings, based on which modules are in use.
577 GNU Coding Standards discourage the use of fseek, since it imposes
578 an arbitrary limitation on some 32-bit hosts. Remember that the
579 fseek module depends on the fseeko module, so we only have three
580 cases to consider:
581
582 1. The developer is not using either module. Issue a warning under
583 GNULIB_POSIXCHECK for both functions, to remind them that both
584 functions have bugs on some systems. _GL_NO_LARGE_FILES has no
585 impact on this warning.
586
587 2. The developer is using both modules. They may be unaware of the
588 arbitrary limitations of fseek, so issue a warning under
589 GNULIB_POSIXCHECK. On the other hand, they may be using both
590 modules intentionally, so the developer can define
591 _GL_NO_LARGE_FILES in the compilation units where the use of fseek
592 is safe, to silence the warning.
593
594 3. The developer is using the fseeko module, but not fseek. Gnulib
595 guarantees that fseek will still work around platform bugs in that
596 case, but we presume that the developer is aware of the pitfalls of
597 fseek and was trying to avoid it, so issue a warning even when
598 GNULIB_POSIXCHECK is undefined. Again, _GL_NO_LARGE_FILES can be
599 defined to silence the warning in particular compilation units.
600 In C++ compilations with GNULIB_NAMESPACE, in order to avoid that
601 fseek gets defined as a macro, it is recommended that the developer
602 uses the fseek module, even if he is not calling the fseek function.
603
604 Most gnulib clients that perform stream operations should fall into
605 category 3. */
606
607#if @GNULIB_FSEEK@
608# if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES
609# define _GL_FSEEK_WARN /* Category 2, above. */
610# undef fseek
611# endif
612# if @REPLACE_FSEEK@
613# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
614# undef fseek
615# define fseek rpl_fseek
616# endif
617_GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)
618 _GL_ARG_NONNULL ((1)));
619_GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));
620# else
621_GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));
622# endif
c0c3707f 623# if __GLIBC__ >= 2
6a29c58e 624_GL_CXXALIASWARN (fseek);
c0c3707f 625# endif
6a29c58e
YQ
626#endif
627
628#if @GNULIB_FSEEKO@
629# if !@GNULIB_FSEEK@ && !defined _GL_NO_LARGE_FILES
630# define _GL_FSEEK_WARN /* Category 3, above. */
631# undef fseek
632# endif
633# if @REPLACE_FSEEKO@
634/* Provide an fseeko function that is aware of a preceding fflush(), and which
635 detects pipes. */
636# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
637# undef fseeko
638# define fseeko rpl_fseeko
639# endif
640_GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
641 _GL_ARG_NONNULL ((1)));
642_GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
643# else
644# if ! @HAVE_DECL_FSEEKO@
645_GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
646 _GL_ARG_NONNULL ((1)));
647# endif
648_GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
649# endif
650_GL_CXXALIASWARN (fseeko);
651#elif defined GNULIB_POSIXCHECK
652# define _GL_FSEEK_WARN /* Category 1, above. */
653# undef fseek
654# undef fseeko
655# if HAVE_RAW_DECL_FSEEKO
656_GL_WARN_ON_USE (fseeko, "fseeko is unportable - "
657 "use gnulib module fseeko for portability");
658# endif
659#endif
660
661#ifdef _GL_FSEEK_WARN
662# undef _GL_FSEEK_WARN
663/* Here, either fseek is undefined (but C89 guarantees that it is
664 declared), or it is defined as rpl_fseek (declared above). */
665_GL_WARN_ON_USE (fseek, "fseek cannot handle files larger than 4 GB "
666 "on 32-bit platforms - "
667 "use fseeko function for handling of large files");
668#endif
669
670
671/* ftell, ftello. See the comments on fseek/fseeko. */
672
673#if @GNULIB_FTELL@
674# if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES
675# define _GL_FTELL_WARN /* Category 2, above. */
676# undef ftell
677# endif
678# if @REPLACE_FTELL@
679# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
680# undef ftell
681# define ftell rpl_ftell
682# endif
683_GL_FUNCDECL_RPL (ftell, long, (FILE *fp) _GL_ARG_NONNULL ((1)));
684_GL_CXXALIAS_RPL (ftell, long, (FILE *fp));
685# else
686_GL_CXXALIAS_SYS (ftell, long, (FILE *fp));
687# endif
c0c3707f 688# if __GLIBC__ >= 2
6a29c58e 689_GL_CXXALIASWARN (ftell);
c0c3707f 690# endif
6a29c58e
YQ
691#endif
692
693#if @GNULIB_FTELLO@
694# if !@GNULIB_FTELL@ && !defined _GL_NO_LARGE_FILES
695# define _GL_FTELL_WARN /* Category 3, above. */
696# undef ftell
697# endif
698# if @REPLACE_FTELLO@
699# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
700# undef ftello
701# define ftello rpl_ftello
702# endif
703_GL_FUNCDECL_RPL (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));
704_GL_CXXALIAS_RPL (ftello, off_t, (FILE *fp));
705# else
706# if ! @HAVE_DECL_FTELLO@
707_GL_FUNCDECL_SYS (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));
708# endif
709_GL_CXXALIAS_SYS (ftello, off_t, (FILE *fp));
710# endif
711_GL_CXXALIASWARN (ftello);
712#elif defined GNULIB_POSIXCHECK
713# define _GL_FTELL_WARN /* Category 1, above. */
714# undef ftell
715# undef ftello
716# if HAVE_RAW_DECL_FTELLO
717_GL_WARN_ON_USE (ftello, "ftello is unportable - "
718 "use gnulib module ftello for portability");
719# endif
720#endif
721
722#ifdef _GL_FTELL_WARN
723# undef _GL_FTELL_WARN
724/* Here, either ftell is undefined (but C89 guarantees that it is
725 declared), or it is defined as rpl_ftell (declared above). */
726_GL_WARN_ON_USE (ftell, "ftell cannot handle files larger than 4 GB "
727 "on 32-bit platforms - "
728 "use ftello function for handling of large files");
729#endif
730
731
732#if @GNULIB_FWRITE@
733# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
734# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
735# undef fwrite
736# define fwrite rpl_fwrite
737# endif
738_GL_FUNCDECL_RPL (fwrite, size_t,
698be2d8
CB
739 (const void *restrict ptr, size_t s, size_t n,
740 FILE *restrict stream)
6a29c58e
YQ
741 _GL_ARG_NONNULL ((1, 4)));
742_GL_CXXALIAS_RPL (fwrite, size_t,
698be2d8
CB
743 (const void *restrict ptr, size_t s, size_t n,
744 FILE *restrict stream));
6a29c58e
YQ
745# else
746_GL_CXXALIAS_SYS (fwrite, size_t,
698be2d8
CB
747 (const void *restrict ptr, size_t s, size_t n,
748 FILE *restrict stream));
6a29c58e 749
4a626d0a 750/* Work around bug 11959 when fortifying glibc 2.4 through 2.15
c0c3707f 751 <https://sourceware.org/bugzilla/show_bug.cgi?id=11959>,
6a29c58e 752 which sometimes causes an unwanted diagnostic for fwrite calls.
4a626d0a
PA
753 This affects only function declaration attributes under certain
754 versions of gcc and clang, and is not needed for C++. */
755# if (0 < __USE_FORTIFY_LEVEL \
756 && __GLIBC__ == 2 && 4 <= __GLIBC_MINOR__ && __GLIBC_MINOR__ <= 15 \
757 && 3 < __GNUC__ + (4 <= __GNUC_MINOR__) \
758 && !defined __cplusplus)
6a29c58e 759# undef fwrite
4a626d0a
PA
760# undef fwrite_unlocked
761extern size_t __REDIRECT (rpl_fwrite,
762 (const void *__restrict, size_t, size_t,
763 FILE *__restrict),
764 fwrite);
765extern size_t __REDIRECT (rpl_fwrite_unlocked,
766 (const void *__restrict, size_t, size_t,
767 FILE *__restrict),
768 fwrite_unlocked);
6a29c58e 769# define fwrite rpl_fwrite
4a626d0a 770# define fwrite_unlocked rpl_fwrite_unlocked
6a29c58e
YQ
771# endif
772# endif
c0c3707f 773# if __GLIBC__ >= 2
6a29c58e 774_GL_CXXALIASWARN (fwrite);
c0c3707f 775# endif
6a29c58e
YQ
776#endif
777
778#if @GNULIB_GETC@
779# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
780# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
781# undef getc
782# define getc rpl_fgetc
783# endif
784_GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
785_GL_CXXALIAS_RPL_1 (getc, rpl_fgetc, int, (FILE *stream));
786# else
787_GL_CXXALIAS_SYS (getc, int, (FILE *stream));
788# endif
c0c3707f 789# if __GLIBC__ >= 2
6a29c58e 790_GL_CXXALIASWARN (getc);
c0c3707f 791# endif
6a29c58e
YQ
792#endif
793
794#if @GNULIB_GETCHAR@
795# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
796# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
797# undef getchar
798# define getchar rpl_getchar
799# endif
800_GL_FUNCDECL_RPL (getchar, int, (void));
801_GL_CXXALIAS_RPL (getchar, int, (void));
802# else
803_GL_CXXALIAS_SYS (getchar, int, (void));
804# endif
c0c3707f 805# if __GLIBC__ >= 2
6a29c58e 806_GL_CXXALIASWARN (getchar);
c0c3707f 807# endif
6a29c58e
YQ
808#endif
809
810#if @GNULIB_GETDELIM@
811/* Read input, up to (and including) the next occurrence of DELIMITER, from
812 STREAM, store it in *LINEPTR (and NUL-terminate it).
813 *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE
814 bytes of space. It is realloc'd as necessary.
815 Return the number of bytes read and stored at *LINEPTR (not including the
816 NUL terminator), or -1 on error or EOF. */
817# if @REPLACE_GETDELIM@
818# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
819# undef getdelim
820# define getdelim rpl_getdelim
821# endif
822_GL_FUNCDECL_RPL (getdelim, ssize_t,
698be2d8
CB
823 (char **restrict lineptr, size_t *restrict linesize,
824 int delimiter,
825 FILE *restrict stream)
6a29c58e
YQ
826 _GL_ARG_NONNULL ((1, 2, 4)));
827_GL_CXXALIAS_RPL (getdelim, ssize_t,
698be2d8
CB
828 (char **restrict lineptr, size_t *restrict linesize,
829 int delimiter,
830 FILE *restrict stream));
6a29c58e
YQ
831# else
832# if !@HAVE_DECL_GETDELIM@
833_GL_FUNCDECL_SYS (getdelim, ssize_t,
698be2d8
CB
834 (char **restrict lineptr, size_t *restrict linesize,
835 int delimiter,
836 FILE *restrict stream)
6a29c58e
YQ
837 _GL_ARG_NONNULL ((1, 2, 4)));
838# endif
839_GL_CXXALIAS_SYS (getdelim, ssize_t,
698be2d8
CB
840 (char **restrict lineptr, size_t *restrict linesize,
841 int delimiter,
842 FILE *restrict stream));
6a29c58e
YQ
843# endif
844_GL_CXXALIASWARN (getdelim);
845#elif defined GNULIB_POSIXCHECK
846# undef getdelim
847# if HAVE_RAW_DECL_GETDELIM
848_GL_WARN_ON_USE (getdelim, "getdelim is unportable - "
849 "use gnulib module getdelim for portability");
850# endif
851#endif
852
853#if @GNULIB_GETLINE@
854/* Read a line, up to (and including) the next newline, from STREAM, store it
855 in *LINEPTR (and NUL-terminate it).
856 *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE
857 bytes of space. It is realloc'd as necessary.
858 Return the number of bytes read and stored at *LINEPTR (not including the
859 NUL terminator), or -1 on error or EOF. */
860# if @REPLACE_GETLINE@
861# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
862# undef getline
863# define getline rpl_getline
864# endif
865_GL_FUNCDECL_RPL (getline, ssize_t,
698be2d8
CB
866 (char **restrict lineptr, size_t *restrict linesize,
867 FILE *restrict stream)
6a29c58e
YQ
868 _GL_ARG_NONNULL ((1, 2, 3)));
869_GL_CXXALIAS_RPL (getline, ssize_t,
698be2d8
CB
870 (char **restrict lineptr, size_t *restrict linesize,
871 FILE *restrict stream));
6a29c58e
YQ
872# else
873# if !@HAVE_DECL_GETLINE@
874_GL_FUNCDECL_SYS (getline, ssize_t,
698be2d8
CB
875 (char **restrict lineptr, size_t *restrict linesize,
876 FILE *restrict stream)
6a29c58e
YQ
877 _GL_ARG_NONNULL ((1, 2, 3)));
878# endif
879_GL_CXXALIAS_SYS (getline, ssize_t,
698be2d8
CB
880 (char **restrict lineptr, size_t *restrict linesize,
881 FILE *restrict stream));
6a29c58e
YQ
882# endif
883# if @HAVE_DECL_GETLINE@
884_GL_CXXALIASWARN (getline);
885# endif
886#elif defined GNULIB_POSIXCHECK
887# undef getline
888# if HAVE_RAW_DECL_GETLINE
889_GL_WARN_ON_USE (getline, "getline is unportable - "
890 "use gnulib module getline for portability");
891# endif
892#endif
893
894/* It is very rare that the developer ever has full control of stdin,
895 so any use of gets warrants an unconditional warning; besides, C11
896 removed it. */
897#undef gets
4a626d0a 898#if HAVE_RAW_DECL_GETS && !defined __cplusplus
6a29c58e
YQ
899_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
900#endif
901
9c9d63b1
PM
902#if @GNULIB_MDA_GETW@
903/* On native Windows, map 'getw' to '_getw', so that -loldnames is not
904 required. In C++ with GNULIB_NAMESPACE, avoid differences between
905 platforms by defining GNULIB_NAMESPACE::getw always. */
906# if defined _WIN32 && !defined __CYGWIN__
907# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
908# undef getw
909# define getw _getw
910# endif
911_GL_CXXALIAS_MDA (getw, int, (FILE *restrict stream));
912# else
913_GL_CXXALIAS_SYS (getw, int, (FILE *restrict stream));
914# endif
915_GL_CXXALIASWARN (getw);
916#endif
917
6a29c58e
YQ
918#if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@
919struct obstack;
920/* Grow an obstack with formatted output. Return the number of
921 bytes added to OBS. No trailing nul byte is added, and the
922 object should be closed with obstack_finish before use. Upon
923 memory allocation error, call obstack_alloc_failed_handler. Upon
924 other error, return -1. */
925# if @REPLACE_OBSTACK_PRINTF@
926# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
927# define obstack_printf rpl_obstack_printf
928# endif
929_GL_FUNCDECL_RPL (obstack_printf, int,
930 (struct obstack *obs, const char *format, ...)
9c9d63b1 931 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
6a29c58e
YQ
932 _GL_ARG_NONNULL ((1, 2)));
933_GL_CXXALIAS_RPL (obstack_printf, int,
934 (struct obstack *obs, const char *format, ...));
935# else
936# if !@HAVE_DECL_OBSTACK_PRINTF@
937_GL_FUNCDECL_SYS (obstack_printf, int,
938 (struct obstack *obs, const char *format, ...)
9c9d63b1 939 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
6a29c58e
YQ
940 _GL_ARG_NONNULL ((1, 2)));
941# endif
942_GL_CXXALIAS_SYS (obstack_printf, int,
943 (struct obstack *obs, const char *format, ...));
944# endif
945_GL_CXXALIASWARN (obstack_printf);
946# if @REPLACE_OBSTACK_PRINTF@
947# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
948# define obstack_vprintf rpl_obstack_vprintf
949# endif
950_GL_FUNCDECL_RPL (obstack_vprintf, int,
951 (struct obstack *obs, const char *format, va_list args)
9c9d63b1 952 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
6a29c58e
YQ
953 _GL_ARG_NONNULL ((1, 2)));
954_GL_CXXALIAS_RPL (obstack_vprintf, int,
955 (struct obstack *obs, const char *format, va_list args));
956# else
957# if !@HAVE_DECL_OBSTACK_PRINTF@
958_GL_FUNCDECL_SYS (obstack_vprintf, int,
959 (struct obstack *obs, const char *format, va_list args)
9c9d63b1 960 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
6a29c58e
YQ
961 _GL_ARG_NONNULL ((1, 2)));
962# endif
963_GL_CXXALIAS_SYS (obstack_vprintf, int,
964 (struct obstack *obs, const char *format, va_list args));
965# endif
966_GL_CXXALIASWARN (obstack_vprintf);
967#endif
968
969#if @GNULIB_PCLOSE@
970# if !@HAVE_PCLOSE@
971_GL_FUNCDECL_SYS (pclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
972# endif
973_GL_CXXALIAS_SYS (pclose, int, (FILE *stream));
974_GL_CXXALIASWARN (pclose);
975#elif defined GNULIB_POSIXCHECK
976# undef pclose
977# if HAVE_RAW_DECL_PCLOSE
978_GL_WARN_ON_USE (pclose, "pclose is unportable - "
979 "use gnulib module pclose for more portability");
980# endif
981#endif
982
983#if @GNULIB_PERROR@
984/* Print a message to standard error, describing the value of ERRNO,
985 (if STRING is not NULL and not empty) prefixed with STRING and ": ",
986 and terminated with a newline. */
987# if @REPLACE_PERROR@
988# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
989# define perror rpl_perror
990# endif
991_GL_FUNCDECL_RPL (perror, void, (const char *string));
992_GL_CXXALIAS_RPL (perror, void, (const char *string));
993# else
994_GL_CXXALIAS_SYS (perror, void, (const char *string));
995# endif
c0c3707f 996# if __GLIBC__ >= 2
6a29c58e 997_GL_CXXALIASWARN (perror);
c0c3707f 998# endif
6a29c58e
YQ
999#elif defined GNULIB_POSIXCHECK
1000# undef perror
1001/* Assume perror is always declared. */
1002_GL_WARN_ON_USE (perror, "perror is not always POSIX compliant - "
1003 "use gnulib module perror for portability");
1004#endif
1005
1006#if @GNULIB_POPEN@
1007# if @REPLACE_POPEN@
1008# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1009# undef popen
1010# define popen rpl_popen
1011# endif
1012_GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)
1013 _GL_ARG_NONNULL ((1, 2)));
1014_GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));
1015# else
1016# if !@HAVE_POPEN@
1017_GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)
1018 _GL_ARG_NONNULL ((1, 2)));
1019# endif
1020_GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));
1021# endif
1022_GL_CXXALIASWARN (popen);
1023#elif defined GNULIB_POSIXCHECK
1024# undef popen
1025# if HAVE_RAW_DECL_POPEN
1026_GL_WARN_ON_USE (popen, "popen is buggy on some platforms - "
1027 "use gnulib module popen or pipe for more portability");
1028# endif
1029#endif
1030
1031#if @GNULIB_PRINTF_POSIX@ || @GNULIB_PRINTF@
1032# if (@GNULIB_PRINTF_POSIX@ && @REPLACE_PRINTF@) \
1033 || (@GNULIB_PRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
9c9d63b1 1034# if defined __GNUC__ || defined __clang__
6a29c58e
YQ
1035# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1036/* Don't break __attribute__((format(printf,M,N))). */
1037# define printf __printf__
1038# endif
1039# if @GNULIB_PRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@
1040_GL_FUNCDECL_RPL_1 (__printf__, int,
698be2d8 1041 (const char *restrict format, ...)
6a29c58e
YQ
1042 __asm__ (@ASM_SYMBOL_PREFIX@
1043 _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))
9c9d63b1 1044 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (1, 2)
6a29c58e
YQ
1045 _GL_ARG_NONNULL ((1)));
1046# else
1047_GL_FUNCDECL_RPL_1 (__printf__, int,
698be2d8 1048 (const char *restrict format, ...)
6a29c58e
YQ
1049 __asm__ (@ASM_SYMBOL_PREFIX@
1050 _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))
1051 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 2)
1052 _GL_ARG_NONNULL ((1)));
1053# endif
1054_GL_CXXALIAS_RPL_1 (printf, __printf__, int, (const char *format, ...));
1055# else
1056# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1057# define printf rpl_printf
1058# endif
1059_GL_FUNCDECL_RPL (printf, int,
698be2d8 1060 (const char *restrict format, ...)
9c9d63b1 1061 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (1, 2)
6a29c58e 1062 _GL_ARG_NONNULL ((1)));
698be2d8 1063_GL_CXXALIAS_RPL (printf, int, (const char *restrict format, ...));
6a29c58e
YQ
1064# endif
1065# define GNULIB_overrides_printf 1
1066# else
698be2d8 1067_GL_CXXALIAS_SYS (printf, int, (const char *restrict format, ...));
6a29c58e 1068# endif
c0c3707f 1069# if __GLIBC__ >= 2
6a29c58e 1070_GL_CXXALIASWARN (printf);
c0c3707f 1071# endif
6a29c58e
YQ
1072#endif
1073#if !@GNULIB_PRINTF_POSIX@ && defined GNULIB_POSIXCHECK
1074# if !GNULIB_overrides_printf
1075# undef printf
1076# endif
1077/* Assume printf is always declared. */
1078_GL_WARN_ON_USE (printf, "printf is not always POSIX compliant - "
1079 "use gnulib module printf-posix for portable "
1080 "POSIX compliance");
1081#endif
1082
1083#if @GNULIB_PUTC@
1084# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
1085# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1086# undef putc
1087# define putc rpl_fputc
1088# endif
1089_GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
1090_GL_CXXALIAS_RPL_1 (putc, rpl_fputc, int, (int c, FILE *stream));
1091# else
1092_GL_CXXALIAS_SYS (putc, int, (int c, FILE *stream));
1093# endif
c0c3707f 1094# if __GLIBC__ >= 2
6a29c58e 1095_GL_CXXALIASWARN (putc);
c0c3707f 1096# endif
6a29c58e
YQ
1097#endif
1098
1099#if @GNULIB_PUTCHAR@
1100# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
1101# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1102# undef putchar
1103# define putchar rpl_putchar
1104# endif
1105_GL_FUNCDECL_RPL (putchar, int, (int c));
1106_GL_CXXALIAS_RPL (putchar, int, (int c));
1107# else
1108_GL_CXXALIAS_SYS (putchar, int, (int c));
1109# endif
c0c3707f 1110# if __GLIBC__ >= 2
6a29c58e 1111_GL_CXXALIASWARN (putchar);
c0c3707f 1112# endif
6a29c58e
YQ
1113#endif
1114
1115#if @GNULIB_PUTS@
1116# if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
1117# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1118# undef puts
1119# define puts rpl_puts
1120# endif
1121_GL_FUNCDECL_RPL (puts, int, (const char *string) _GL_ARG_NONNULL ((1)));
1122_GL_CXXALIAS_RPL (puts, int, (const char *string));
1123# else
1124_GL_CXXALIAS_SYS (puts, int, (const char *string));
1125# endif
c0c3707f 1126# if __GLIBC__ >= 2
6a29c58e 1127_GL_CXXALIASWARN (puts);
c0c3707f 1128# endif
6a29c58e
YQ
1129#endif
1130
9c9d63b1
PM
1131#if @GNULIB_MDA_PUTW@
1132/* On native Windows, map 'putw' to '_putw', so that -loldnames is not
1133 required. In C++ with GNULIB_NAMESPACE, avoid differences between
1134 platforms by defining GNULIB_NAMESPACE::putw always. */
1135# if defined _WIN32 && !defined __CYGWIN__
1136# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1137# undef putw
1138# define putw _putw
1139# endif
1140_GL_CXXALIAS_MDA (putw, int, (int w, FILE *restrict stream));
1141# else
1142_GL_CXXALIAS_SYS (putw, int, (int w, FILE *restrict stream));
1143# endif
1144_GL_CXXALIASWARN (putw);
1145#endif
1146
6a29c58e
YQ
1147#if @GNULIB_REMOVE@
1148# if @REPLACE_REMOVE@
1149# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1150# undef remove
1151# define remove rpl_remove
1152# endif
1153_GL_FUNCDECL_RPL (remove, int, (const char *name) _GL_ARG_NONNULL ((1)));
1154_GL_CXXALIAS_RPL (remove, int, (const char *name));
1155# else
1156_GL_CXXALIAS_SYS (remove, int, (const char *name));
1157# endif
c0c3707f 1158# if __GLIBC__ >= 2
6a29c58e 1159_GL_CXXALIASWARN (remove);
c0c3707f 1160# endif
6a29c58e
YQ
1161#elif defined GNULIB_POSIXCHECK
1162# undef remove
1163/* Assume remove is always declared. */
1164_GL_WARN_ON_USE (remove, "remove cannot handle directories on some platforms - "
1165 "use gnulib module remove for more portability");
1166#endif
1167
1168#if @GNULIB_RENAME@
1169# if @REPLACE_RENAME@
1170# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1171# undef rename
1172# define rename rpl_rename
1173# endif
1174_GL_FUNCDECL_RPL (rename, int,
1175 (const char *old_filename, const char *new_filename)
1176 _GL_ARG_NONNULL ((1, 2)));
1177_GL_CXXALIAS_RPL (rename, int,
1178 (const char *old_filename, const char *new_filename));
1179# else
1180_GL_CXXALIAS_SYS (rename, int,
1181 (const char *old_filename, const char *new_filename));
1182# endif
c0c3707f 1183# if __GLIBC__ >= 2
6a29c58e 1184_GL_CXXALIASWARN (rename);
c0c3707f 1185# endif
6a29c58e
YQ
1186#elif defined GNULIB_POSIXCHECK
1187# undef rename
1188/* Assume rename is always declared. */
1189_GL_WARN_ON_USE (rename, "rename is buggy on some platforms - "
1190 "use gnulib module rename for more portability");
1191#endif
1192
1193#if @GNULIB_RENAMEAT@
1194# if @REPLACE_RENAMEAT@
1195# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1196# undef renameat
1197# define renameat rpl_renameat
1198# endif
1199_GL_FUNCDECL_RPL (renameat, int,
1200 (int fd1, char const *file1, int fd2, char const *file2)
1201 _GL_ARG_NONNULL ((2, 4)));
1202_GL_CXXALIAS_RPL (renameat, int,
1203 (int fd1, char const *file1, int fd2, char const *file2));
1204# else
1205# if !@HAVE_RENAMEAT@
1206_GL_FUNCDECL_SYS (renameat, int,
1207 (int fd1, char const *file1, int fd2, char const *file2)
1208 _GL_ARG_NONNULL ((2, 4)));
1209# endif
1210_GL_CXXALIAS_SYS (renameat, int,
1211 (int fd1, char const *file1, int fd2, char const *file2));
1212# endif
1213_GL_CXXALIASWARN (renameat);
1214#elif defined GNULIB_POSIXCHECK
1215# undef renameat
1216# if HAVE_RAW_DECL_RENAMEAT
1217_GL_WARN_ON_USE (renameat, "renameat is not portable - "
1218 "use gnulib module renameat for portability");
1219# endif
1220#endif
1221
1222#if @GNULIB_SCANF@
1223# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
9c9d63b1 1224# if defined __GNUC__ || defined __clang__
6a29c58e
YQ
1225# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1226# undef scanf
1227/* Don't break __attribute__((format(scanf,M,N))). */
1228# define scanf __scanf__
1229# endif
1230_GL_FUNCDECL_RPL_1 (__scanf__, int,
698be2d8 1231 (const char *restrict format, ...)
6a29c58e
YQ
1232 __asm__ (@ASM_SYMBOL_PREFIX@
1233 _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_scanf))
1234 _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)
1235 _GL_ARG_NONNULL ((1)));
698be2d8 1236_GL_CXXALIAS_RPL_1 (scanf, __scanf__, int, (const char *restrict format, ...));
6a29c58e
YQ
1237# else
1238# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1239# undef scanf
1240# define scanf rpl_scanf
1241# endif
698be2d8 1242_GL_FUNCDECL_RPL (scanf, int, (const char *restrict format, ...)
6a29c58e
YQ
1243 _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)
1244 _GL_ARG_NONNULL ((1)));
698be2d8 1245_GL_CXXALIAS_RPL (scanf, int, (const char *restrict format, ...));
6a29c58e
YQ
1246# endif
1247# else
698be2d8 1248_GL_CXXALIAS_SYS (scanf, int, (const char *restrict format, ...));
6a29c58e 1249# endif
c0c3707f 1250# if __GLIBC__ >= 2
6a29c58e 1251_GL_CXXALIASWARN (scanf);
c0c3707f 1252# endif
6a29c58e
YQ
1253#endif
1254
1255#if @GNULIB_SNPRINTF@
1256# if @REPLACE_SNPRINTF@
1257# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1258# define snprintf rpl_snprintf
1259# endif
1260_GL_FUNCDECL_RPL (snprintf, int,
698be2d8
CB
1261 (char *restrict str, size_t size,
1262 const char *restrict format, ...)
9c9d63b1 1263 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (3, 4)
6a29c58e
YQ
1264 _GL_ARG_NONNULL ((3)));
1265_GL_CXXALIAS_RPL (snprintf, int,
698be2d8
CB
1266 (char *restrict str, size_t size,
1267 const char *restrict format, ...));
6a29c58e
YQ
1268# else
1269# if !@HAVE_DECL_SNPRINTF@
1270_GL_FUNCDECL_SYS (snprintf, int,
698be2d8
CB
1271 (char *restrict str, size_t size,
1272 const char *restrict format, ...)
9c9d63b1 1273 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (3, 4)
6a29c58e
YQ
1274 _GL_ARG_NONNULL ((3)));
1275# endif
1276_GL_CXXALIAS_SYS (snprintf, int,
698be2d8
CB
1277 (char *restrict str, size_t size,
1278 const char *restrict format, ...));
6a29c58e 1279# endif
9c9d63b1 1280# if __GLIBC__ >= 2
6a29c58e 1281_GL_CXXALIASWARN (snprintf);
9c9d63b1 1282# endif
6a29c58e
YQ
1283#elif defined GNULIB_POSIXCHECK
1284# undef snprintf
1285# if HAVE_RAW_DECL_SNPRINTF
1286_GL_WARN_ON_USE (snprintf, "snprintf is unportable - "
1287 "use gnulib module snprintf for portability");
1288# endif
1289#endif
1290
1291/* Some people would argue that all sprintf uses should be warned about
1292 (for example, OpenBSD issues a link warning for it),
1293 since it can cause security holes due to buffer overruns.
1294 However, we believe that sprintf can be used safely, and is more
1295 efficient than snprintf in those safe cases; and as proof of our
1296 belief, we use sprintf in several gnulib modules. So this header
1297 intentionally avoids adding a warning to sprintf except when
1298 GNULIB_POSIXCHECK is defined. */
1299
1300#if @GNULIB_SPRINTF_POSIX@
1301# if @REPLACE_SPRINTF@
1302# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1303# define sprintf rpl_sprintf
1304# endif
698be2d8
CB
1305_GL_FUNCDECL_RPL (sprintf, int,
1306 (char *restrict str, const char *restrict format, ...)
9c9d63b1 1307 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
698be2d8
CB
1308 _GL_ARG_NONNULL ((1, 2)));
1309_GL_CXXALIAS_RPL (sprintf, int,
1310 (char *restrict str, const char *restrict format, ...));
6a29c58e 1311# else
698be2d8
CB
1312_GL_CXXALIAS_SYS (sprintf, int,
1313 (char *restrict str, const char *restrict format, ...));
6a29c58e 1314# endif
c0c3707f 1315# if __GLIBC__ >= 2
6a29c58e 1316_GL_CXXALIASWARN (sprintf);
c0c3707f 1317# endif
6a29c58e
YQ
1318#elif defined GNULIB_POSIXCHECK
1319# undef sprintf
1320/* Assume sprintf is always declared. */
1321_GL_WARN_ON_USE (sprintf, "sprintf is not always POSIX compliant - "
1322 "use gnulib module sprintf-posix for portable "
1323 "POSIX compliance");
1324#endif
1325
9c9d63b1
PM
1326#if @GNULIB_MDA_TEMPNAM@
1327/* On native Windows, map 'tempnam' to '_tempnam', so that -loldnames is not
1328 required. In C++ with GNULIB_NAMESPACE, avoid differences between
1329 platforms by defining GNULIB_NAMESPACE::tempnam always. */
1330# if defined _WIN32 && !defined __CYGWIN__
1331# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1332# undef tempnam
1333# define tempnam _tempnam
1334# endif
1335_GL_CXXALIAS_MDA (tempnam, char *, (const char *dir, const char *prefix));
1336# else
1337_GL_CXXALIAS_SYS (tempnam, char *, (const char *dir, const char *prefix));
1338# endif
1339_GL_CXXALIASWARN (tempnam);
1340#endif
1341
6a29c58e
YQ
1342#if @GNULIB_TMPFILE@
1343# if @REPLACE_TMPFILE@
1344# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1345# define tmpfile rpl_tmpfile
1346# endif
1347_GL_FUNCDECL_RPL (tmpfile, FILE *, (void));
1348_GL_CXXALIAS_RPL (tmpfile, FILE *, (void));
1349# else
1350_GL_CXXALIAS_SYS (tmpfile, FILE *, (void));
1351# endif
c0c3707f 1352# if __GLIBC__ >= 2
6a29c58e 1353_GL_CXXALIASWARN (tmpfile);
c0c3707f 1354# endif
6a29c58e
YQ
1355#elif defined GNULIB_POSIXCHECK
1356# undef tmpfile
1357# if HAVE_RAW_DECL_TMPFILE
1358_GL_WARN_ON_USE (tmpfile, "tmpfile is not usable on mingw - "
1359 "use gnulib module tmpfile for portability");
1360# endif
1361#endif
1362
1363#if @GNULIB_VASPRINTF@
1364/* Write formatted output to a string dynamically allocated with malloc().
1365 If the memory allocation succeeds, store the address of the string in
1366 *RESULT and return the number of resulting bytes, excluding the trailing
1367 NUL. Upon memory allocation error, or some other error, return -1. */
1368# if @REPLACE_VASPRINTF@
1369# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1370# define asprintf rpl_asprintf
1371# endif
1372_GL_FUNCDECL_RPL (asprintf, int,
1373 (char **result, const char *format, ...)
9c9d63b1 1374 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
6a29c58e
YQ
1375 _GL_ARG_NONNULL ((1, 2)));
1376_GL_CXXALIAS_RPL (asprintf, int,
1377 (char **result, const char *format, ...));
1378# else
1379# if !@HAVE_VASPRINTF@
1380_GL_FUNCDECL_SYS (asprintf, int,
1381 (char **result, const char *format, ...)
9c9d63b1 1382 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 3)
6a29c58e
YQ
1383 _GL_ARG_NONNULL ((1, 2)));
1384# endif
1385_GL_CXXALIAS_SYS (asprintf, int,
1386 (char **result, const char *format, ...));
1387# endif
1388_GL_CXXALIASWARN (asprintf);
1389# if @REPLACE_VASPRINTF@
1390# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1391# define vasprintf rpl_vasprintf
1392# endif
1393_GL_FUNCDECL_RPL (vasprintf, int,
1394 (char **result, const char *format, va_list args)
9c9d63b1 1395 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
6a29c58e
YQ
1396 _GL_ARG_NONNULL ((1, 2)));
1397_GL_CXXALIAS_RPL (vasprintf, int,
1398 (char **result, const char *format, va_list args));
1399# else
1400# if !@HAVE_VASPRINTF@
1401_GL_FUNCDECL_SYS (vasprintf, int,
1402 (char **result, const char *format, va_list args)
9c9d63b1 1403 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
6a29c58e
YQ
1404 _GL_ARG_NONNULL ((1, 2)));
1405# endif
1406_GL_CXXALIAS_SYS (vasprintf, int,
1407 (char **result, const char *format, va_list args));
1408# endif
1409_GL_CXXALIASWARN (vasprintf);
1410#endif
1411
1412#if @GNULIB_VDPRINTF@
1413# if @REPLACE_VDPRINTF@
1414# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1415# define vdprintf rpl_vdprintf
1416# endif
698be2d8
CB
1417_GL_FUNCDECL_RPL (vdprintf, int,
1418 (int fd, const char *restrict format, va_list args)
9c9d63b1 1419 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
698be2d8
CB
1420 _GL_ARG_NONNULL ((2)));
1421_GL_CXXALIAS_RPL (vdprintf, int,
1422 (int fd, const char *restrict format, va_list args));
6a29c58e
YQ
1423# else
1424# if !@HAVE_VDPRINTF@
698be2d8
CB
1425_GL_FUNCDECL_SYS (vdprintf, int,
1426 (int fd, const char *restrict format, va_list args)
9c9d63b1 1427 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
698be2d8 1428 _GL_ARG_NONNULL ((2)));
6a29c58e
YQ
1429# endif
1430/* Need to cast, because on Solaris, the third parameter will likely be
1431 __va_list args. */
1432_GL_CXXALIAS_SYS_CAST (vdprintf, int,
698be2d8 1433 (int fd, const char *restrict format, va_list args));
6a29c58e 1434# endif
c0c3707f 1435# if __GLIBC__ >= 2
6a29c58e 1436_GL_CXXALIASWARN (vdprintf);
c0c3707f 1437# endif
6a29c58e
YQ
1438#elif defined GNULIB_POSIXCHECK
1439# undef vdprintf
1440# if HAVE_RAW_DECL_VDPRINTF
1441_GL_WARN_ON_USE (vdprintf, "vdprintf is unportable - "
1442 "use gnulib module vdprintf for portability");
1443# endif
1444#endif
1445
1446#if @GNULIB_VFPRINTF_POSIX@ || @GNULIB_VFPRINTF@
1447# if (@GNULIB_VFPRINTF_POSIX@ && @REPLACE_VFPRINTF@) \
1448 || (@GNULIB_VFPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
1449# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1450# define vfprintf rpl_vfprintf
1451# endif
1452# define GNULIB_overrides_vfprintf 1
1453# if @GNULIB_VFPRINTF_POSIX@
698be2d8
CB
1454_GL_FUNCDECL_RPL (vfprintf, int,
1455 (FILE *restrict fp,
1456 const char *restrict format, va_list args)
9c9d63b1 1457 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
698be2d8 1458 _GL_ARG_NONNULL ((1, 2)));
6a29c58e 1459# else
698be2d8
CB
1460_GL_FUNCDECL_RPL (vfprintf, int,
1461 (FILE *restrict fp,
1462 const char *restrict format, va_list args)
1463 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 0)
1464 _GL_ARG_NONNULL ((1, 2)));
6a29c58e 1465# endif
698be2d8
CB
1466_GL_CXXALIAS_RPL (vfprintf, int,
1467 (FILE *restrict fp,
1468 const char *restrict format, va_list args));
6a29c58e
YQ
1469# else
1470/* Need to cast, because on Solaris, the third parameter is
1471 __va_list args
1472 and GCC's fixincludes did not change this to __gnuc_va_list. */
1473_GL_CXXALIAS_SYS_CAST (vfprintf, int,
698be2d8
CB
1474 (FILE *restrict fp,
1475 const char *restrict format, va_list args));
6a29c58e 1476# endif
c0c3707f 1477# if __GLIBC__ >= 2
6a29c58e 1478_GL_CXXALIASWARN (vfprintf);
c0c3707f 1479# endif
6a29c58e
YQ
1480#endif
1481#if !@GNULIB_VFPRINTF_POSIX@ && defined GNULIB_POSIXCHECK
1482# if !GNULIB_overrides_vfprintf
1483# undef vfprintf
1484# endif
1485/* Assume vfprintf is always declared. */
1486_GL_WARN_ON_USE (vfprintf, "vfprintf is not always POSIX compliant - "
1487 "use gnulib module vfprintf-posix for portable "
1488 "POSIX compliance");
1489#endif
1490
1491#if @GNULIB_VFSCANF@
1492# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
1493# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1494# undef vfscanf
1495# define vfscanf rpl_vfscanf
1496# endif
1497_GL_FUNCDECL_RPL (vfscanf, int,
698be2d8
CB
1498 (FILE *restrict stream,
1499 const char *restrict format, va_list args)
6a29c58e
YQ
1500 _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 0)
1501 _GL_ARG_NONNULL ((1, 2)));
1502_GL_CXXALIAS_RPL (vfscanf, int,
698be2d8
CB
1503 (FILE *restrict stream,
1504 const char *restrict format, va_list args));
6a29c58e
YQ
1505# else
1506_GL_CXXALIAS_SYS (vfscanf, int,
698be2d8
CB
1507 (FILE *restrict stream,
1508 const char *restrict format, va_list args));
6a29c58e 1509# endif
9c9d63b1 1510# if __GLIBC__ >= 2
6a29c58e 1511_GL_CXXALIASWARN (vfscanf);
9c9d63b1 1512# endif
6a29c58e
YQ
1513#endif
1514
1515#if @GNULIB_VPRINTF_POSIX@ || @GNULIB_VPRINTF@
1516# if (@GNULIB_VPRINTF_POSIX@ && @REPLACE_VPRINTF@) \
1517 || (@GNULIB_VPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
1518# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1519# define vprintf rpl_vprintf
1520# endif
1521# define GNULIB_overrides_vprintf 1
1522# if @GNULIB_VPRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@
698be2d8 1523_GL_FUNCDECL_RPL (vprintf, int, (const char *restrict format, va_list args)
9c9d63b1 1524 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (1, 0)
6a29c58e
YQ
1525 _GL_ARG_NONNULL ((1)));
1526# else
698be2d8 1527_GL_FUNCDECL_RPL (vprintf, int, (const char *restrict format, va_list args)
6a29c58e
YQ
1528 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 0)
1529 _GL_ARG_NONNULL ((1)));
1530# endif
698be2d8 1531_GL_CXXALIAS_RPL (vprintf, int, (const char *restrict format, va_list args));
6a29c58e
YQ
1532# else
1533/* Need to cast, because on Solaris, the second parameter is
1534 __va_list args
1535 and GCC's fixincludes did not change this to __gnuc_va_list. */
698be2d8
CB
1536_GL_CXXALIAS_SYS_CAST (vprintf, int,
1537 (const char *restrict format, va_list args));
6a29c58e 1538# endif
c0c3707f 1539# if __GLIBC__ >= 2
6a29c58e 1540_GL_CXXALIASWARN (vprintf);
c0c3707f 1541# endif
6a29c58e
YQ
1542#endif
1543#if !@GNULIB_VPRINTF_POSIX@ && defined GNULIB_POSIXCHECK
1544# if !GNULIB_overrides_vprintf
1545# undef vprintf
1546# endif
1547/* Assume vprintf is always declared. */
1548_GL_WARN_ON_USE (vprintf, "vprintf is not always POSIX compliant - "
1549 "use gnulib module vprintf-posix for portable "
1550 "POSIX compliance");
1551#endif
1552
1553#if @GNULIB_VSCANF@
1554# if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
1555# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1556# undef vscanf
1557# define vscanf rpl_vscanf
1558# endif
698be2d8 1559_GL_FUNCDECL_RPL (vscanf, int, (const char *restrict format, va_list args)
6a29c58e
YQ
1560 _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 0)
1561 _GL_ARG_NONNULL ((1)));
698be2d8 1562_GL_CXXALIAS_RPL (vscanf, int, (const char *restrict format, va_list args));
6a29c58e 1563# else
698be2d8 1564_GL_CXXALIAS_SYS (vscanf, int, (const char *restrict format, va_list args));
6a29c58e 1565# endif
9c9d63b1 1566# if __GLIBC__ >= 2
6a29c58e 1567_GL_CXXALIASWARN (vscanf);
9c9d63b1 1568# endif
6a29c58e
YQ
1569#endif
1570
1571#if @GNULIB_VSNPRINTF@
1572# if @REPLACE_VSNPRINTF@
1573# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1574# define vsnprintf rpl_vsnprintf
1575# endif
1576_GL_FUNCDECL_RPL (vsnprintf, int,
698be2d8
CB
1577 (char *restrict str, size_t size,
1578 const char *restrict format, va_list args)
9c9d63b1 1579 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (3, 0)
6a29c58e
YQ
1580 _GL_ARG_NONNULL ((3)));
1581_GL_CXXALIAS_RPL (vsnprintf, int,
698be2d8
CB
1582 (char *restrict str, size_t size,
1583 const char *restrict format, va_list args));
6a29c58e
YQ
1584# else
1585# if !@HAVE_DECL_VSNPRINTF@
1586_GL_FUNCDECL_SYS (vsnprintf, int,
698be2d8
CB
1587 (char *restrict str, size_t size,
1588 const char *restrict format, va_list args)
9c9d63b1 1589 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (3, 0)
6a29c58e
YQ
1590 _GL_ARG_NONNULL ((3)));
1591# endif
1592_GL_CXXALIAS_SYS (vsnprintf, int,
698be2d8
CB
1593 (char *restrict str, size_t size,
1594 const char *restrict format, va_list args));
6a29c58e 1595# endif
9c9d63b1 1596# if __GLIBC__ >= 2
6a29c58e 1597_GL_CXXALIASWARN (vsnprintf);
9c9d63b1 1598# endif
6a29c58e
YQ
1599#elif defined GNULIB_POSIXCHECK
1600# undef vsnprintf
1601# if HAVE_RAW_DECL_VSNPRINTF
1602_GL_WARN_ON_USE (vsnprintf, "vsnprintf is unportable - "
1603 "use gnulib module vsnprintf for portability");
1604# endif
1605#endif
1606
1607#if @GNULIB_VSPRINTF_POSIX@
1608# if @REPLACE_VSPRINTF@
1609# if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1610# define vsprintf rpl_vsprintf
1611# endif
1612_GL_FUNCDECL_RPL (vsprintf, int,
698be2d8
CB
1613 (char *restrict str,
1614 const char *restrict format, va_list args)
9c9d63b1 1615 _GL_ATTRIBUTE_FORMAT_PRINTF_STANDARD (2, 0)
6a29c58e
YQ
1616 _GL_ARG_NONNULL ((1, 2)));
1617_GL_CXXALIAS_RPL (vsprintf, int,
698be2d8
CB
1618 (char *restrict str,
1619 const char *restrict format, va_list args));
6a29c58e
YQ
1620# else
1621/* Need to cast, because on Solaris, the third parameter is
1622 __va_list args
1623 and GCC's fixincludes did not change this to __gnuc_va_list. */
1624_GL_CXXALIAS_SYS_CAST (vsprintf, int,
698be2d8
CB
1625 (char *restrict str,
1626 const char *restrict format, va_list args));
6a29c58e 1627# endif
c0c3707f 1628# if __GLIBC__ >= 2
6a29c58e 1629_GL_CXXALIASWARN (vsprintf);
c0c3707f 1630# endif
6a29c58e
YQ
1631#elif defined GNULIB_POSIXCHECK
1632# undef vsprintf
1633/* Assume vsprintf is always declared. */
1634_GL_WARN_ON_USE (vsprintf, "vsprintf is not always POSIX compliant - "
1635 "use gnulib module vsprintf-posix for portable "
1636 "POSIX compliance");
1637#endif
1638
6a29c58e
YQ
1639#endif /* _@GUARD_PREFIX@_STDIO_H */
1640#endif /* _@GUARD_PREFIX@_STDIO_H */
1641#endif
This page took 0.623089 seconds and 4 git commands to generate.