fwrite: silence __wur without using inline
[gnulib.git] / lib / stdio.in.h
1 /* A GNU-like <stdio.h>.
2
3    Copyright (C) 2004, 2007-2013 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 2, 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
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_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
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.  */
65 #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
66 # define _GL_ATTRIBUTE_FORMAT(spec) __attribute__ ((__format__ spec))
67 #else
68 # define _GL_ATTRIBUTE_FORMAT(spec) /* empty */
69 #endif
70
71 /* _GL_ATTRIBUTE_FORMAT_PRINTF
72    indicates to GCC that the function takes a format string and arguments,
73    where the format string directives are the ones standardized by ISO C99
74    and POSIX.  */
75 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
76 # define _GL_ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
77    _GL_ATTRIBUTE_FORMAT ((__gnu_printf__, formatstring_parameter, first_argument))
78 #else
79 # define _GL_ATTRIBUTE_FORMAT_PRINTF(formatstring_parameter, first_argument) \
80    _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))
81 #endif
82
83 /* _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_PRINTF,
84    except that it indicates to GCC that the supported format string directives
85    are the ones of the system printf(), rather than the ones standardized by
86    ISO C99 and POSIX.  */
87 #define _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM(formatstring_parameter, first_argument) \
88   _GL_ATTRIBUTE_FORMAT ((__printf__, formatstring_parameter, first_argument))
89
90 /* _GL_ATTRIBUTE_FORMAT_SCANF
91    indicates to GCC that the function takes a format string and arguments,
92    where the format string directives are the ones standardized by ISO C99
93    and POSIX.  */
94 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
95 # define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \
96    _GL_ATTRIBUTE_FORMAT ((__gnu_scanf__, formatstring_parameter, first_argument))
97 #else
98 # define _GL_ATTRIBUTE_FORMAT_SCANF(formatstring_parameter, first_argument) \
99    _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))
100 #endif
101
102 /* _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM is like _GL_ATTRIBUTE_FORMAT_SCANF,
103    except that it indicates to GCC that the supported format string directives
104    are the ones of the system scanf(), rather than the ones standardized by
105    ISO C99 and POSIX.  */
106 #define _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM(formatstring_parameter, first_argument) \
107   _GL_ATTRIBUTE_FORMAT ((__scanf__, formatstring_parameter, first_argument))
108
109 /* Solaris 10 declares renameat in <unistd.h>, not in <stdio.h>.  */
110 /* But in any case avoid namespace pollution on glibc systems.  */
111 #if (@GNULIB_RENAMEAT@ || defined GNULIB_POSIXCHECK) && defined __sun \
112     && ! defined __GLIBC__
113 # include <unistd.h>
114 #endif
115
116
117 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
118
119 /* The definition of _GL_ARG_NONNULL is copied here.  */
120
121 /* The definition of _GL_WARN_ON_USE is copied here.  */
122
123 /* Macros for stringification.  */
124 #define _GL_STDIO_STRINGIZE(token) #token
125 #define _GL_STDIO_MACROEXPAND_AND_STRINGIZE(token) _GL_STDIO_STRINGIZE(token)
126
127
128 #if @GNULIB_DPRINTF@
129 # if @REPLACE_DPRINTF@
130 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
131 #   define dprintf rpl_dprintf
132 #  endif
133 _GL_FUNCDECL_RPL (dprintf, int, (int fd, const char *format, ...)
134                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
135                                 _GL_ARG_NONNULL ((2)));
136 _GL_CXXALIAS_RPL (dprintf, int, (int fd, const char *format, ...));
137 # else
138 #  if !@HAVE_DPRINTF@
139 _GL_FUNCDECL_SYS (dprintf, int, (int fd, const char *format, ...)
140                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
141                                 _GL_ARG_NONNULL ((2)));
142 #  endif
143 _GL_CXXALIAS_SYS (dprintf, int, (int fd, const char *format, ...));
144 # endif
145 _GL_CXXALIASWARN (dprintf);
146 #elif defined GNULIB_POSIXCHECK
147 # undef dprintf
148 # if HAVE_RAW_DECL_DPRINTF
149 _GL_WARN_ON_USE (dprintf, "dprintf is unportable - "
150                  "use gnulib module dprintf for portability");
151 # endif
152 #endif
153
154 #if @GNULIB_FCLOSE@
155 /* Close STREAM and its underlying file descriptor.  */
156 # if @REPLACE_FCLOSE@
157 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
158 #   define fclose rpl_fclose
159 #  endif
160 _GL_FUNCDECL_RPL (fclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
161 _GL_CXXALIAS_RPL (fclose, int, (FILE *stream));
162 # else
163 _GL_CXXALIAS_SYS (fclose, int, (FILE *stream));
164 # endif
165 _GL_CXXALIASWARN (fclose);
166 #elif defined GNULIB_POSIXCHECK
167 # undef fclose
168 /* Assume fclose is always declared.  */
169 _GL_WARN_ON_USE (fclose, "fclose is not always POSIX compliant - "
170                  "use gnulib module fclose for portable POSIX compliance");
171 #endif
172
173 #if @GNULIB_FDOPEN@
174 # if @REPLACE_FDOPEN@
175 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
176 #   undef fdopen
177 #   define fdopen rpl_fdopen
178 #  endif
179 _GL_FUNCDECL_RPL (fdopen, FILE *, (int fd, const char *mode)
180                                   _GL_ARG_NONNULL ((2)));
181 _GL_CXXALIAS_RPL (fdopen, FILE *, (int fd, const char *mode));
182 # else
183 _GL_CXXALIAS_SYS (fdopen, FILE *, (int fd, const char *mode));
184 # endif
185 _GL_CXXALIASWARN (fdopen);
186 #elif defined GNULIB_POSIXCHECK
187 # undef fdopen
188 /* Assume fdopen is always declared.  */
189 _GL_WARN_ON_USE (fdopen, "fdopen on native Windows platforms is not POSIX compliant - "
190                  "use gnulib module fdopen for portability");
191 #endif
192
193 #if @GNULIB_FFLUSH@
194 /* Flush all pending data on STREAM according to POSIX rules.  Both
195    output and seekable input streams are supported.
196    Note! LOSS OF DATA can occur if fflush is applied on an input stream
197    that is _not_seekable_ or on an update stream that is _not_seekable_
198    and in which the most recent operation was input.  Seekability can
199    be tested with lseek(fileno(fp),0,SEEK_CUR).  */
200 # if @REPLACE_FFLUSH@
201 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
202 #   define fflush rpl_fflush
203 #  endif
204 _GL_FUNCDECL_RPL (fflush, int, (FILE *gl_stream));
205 _GL_CXXALIAS_RPL (fflush, int, (FILE *gl_stream));
206 # else
207 _GL_CXXALIAS_SYS (fflush, int, (FILE *gl_stream));
208 # endif
209 _GL_CXXALIASWARN (fflush);
210 #elif defined GNULIB_POSIXCHECK
211 # undef fflush
212 /* Assume fflush is always declared.  */
213 _GL_WARN_ON_USE (fflush, "fflush is not always POSIX compliant - "
214                  "use gnulib module fflush for portable POSIX compliance");
215 #endif
216
217 #if @GNULIB_FGETC@
218 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
219 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
220 #   undef fgetc
221 #   define fgetc rpl_fgetc
222 #  endif
223 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
224 _GL_CXXALIAS_RPL (fgetc, int, (FILE *stream));
225 # else
226 _GL_CXXALIAS_SYS (fgetc, int, (FILE *stream));
227 # endif
228 _GL_CXXALIASWARN (fgetc);
229 #endif
230
231 #if @GNULIB_FGETS@
232 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
233 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
234 #   undef fgets
235 #   define fgets rpl_fgets
236 #  endif
237 _GL_FUNCDECL_RPL (fgets, char *, (char *s, int n, FILE *stream)
238                                  _GL_ARG_NONNULL ((1, 3)));
239 _GL_CXXALIAS_RPL (fgets, char *, (char *s, int n, FILE *stream));
240 # else
241 _GL_CXXALIAS_SYS (fgets, char *, (char *s, int n, FILE *stream));
242 # endif
243 _GL_CXXALIASWARN (fgets);
244 #endif
245
246 #if @GNULIB_FOPEN@
247 # if @REPLACE_FOPEN@
248 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
249 #   undef fopen
250 #   define fopen rpl_fopen
251 #  endif
252 _GL_FUNCDECL_RPL (fopen, FILE *, (const char *filename, const char *mode)
253                                  _GL_ARG_NONNULL ((1, 2)));
254 _GL_CXXALIAS_RPL (fopen, FILE *, (const char *filename, const char *mode));
255 # else
256 _GL_CXXALIAS_SYS (fopen, FILE *, (const char *filename, const char *mode));
257 # endif
258 _GL_CXXALIASWARN (fopen);
259 #elif defined GNULIB_POSIXCHECK
260 # undef fopen
261 /* Assume fopen is always declared.  */
262 _GL_WARN_ON_USE (fopen, "fopen on native Windows platforms is not POSIX compliant - "
263                  "use gnulib module fopen for portability");
264 #endif
265
266 #if @GNULIB_FPRINTF_POSIX@ || @GNULIB_FPRINTF@
267 # if (@GNULIB_FPRINTF_POSIX@ && @REPLACE_FPRINTF@) \
268      || (@GNULIB_FPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
269 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
270 #   define fprintf rpl_fprintf
271 #  endif
272 #  define GNULIB_overrides_fprintf 1
273 #  if @GNULIB_FPRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@
274 _GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)
275                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
276                                 _GL_ARG_NONNULL ((1, 2)));
277 #  else
278 _GL_FUNCDECL_RPL (fprintf, int, (FILE *fp, const char *format, ...)
279                                 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 3)
280                                 _GL_ARG_NONNULL ((1, 2)));
281 #  endif
282 _GL_CXXALIAS_RPL (fprintf, int, (FILE *fp, const char *format, ...));
283 # else
284 _GL_CXXALIAS_SYS (fprintf, int, (FILE *fp, const char *format, ...));
285 # endif
286 _GL_CXXALIASWARN (fprintf);
287 #endif
288 #if !@GNULIB_FPRINTF_POSIX@ && defined GNULIB_POSIXCHECK
289 # if !GNULIB_overrides_fprintf
290 #  undef fprintf
291 # endif
292 /* Assume fprintf is always declared.  */
293 _GL_WARN_ON_USE (fprintf, "fprintf is not always POSIX compliant - "
294                  "use gnulib module fprintf-posix for portable "
295                  "POSIX compliance");
296 #endif
297
298 #if @GNULIB_FPURGE@
299 /* Discard all pending buffered I/O data on STREAM.
300    STREAM must not be wide-character oriented.
301    When discarding pending output, the file position is set back to where it
302    was before the write calls.  When discarding pending input, the file
303    position is advanced to match the end of the previously read input.
304    Return 0 if successful.  Upon error, return -1 and set errno.  */
305 # if @REPLACE_FPURGE@
306 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
307 #   define fpurge rpl_fpurge
308 #  endif
309 _GL_FUNCDECL_RPL (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));
310 _GL_CXXALIAS_RPL (fpurge, int, (FILE *gl_stream));
311 # else
312 #  if !@HAVE_DECL_FPURGE@
313 _GL_FUNCDECL_SYS (fpurge, int, (FILE *gl_stream) _GL_ARG_NONNULL ((1)));
314 #  endif
315 _GL_CXXALIAS_SYS (fpurge, int, (FILE *gl_stream));
316 # endif
317 _GL_CXXALIASWARN (fpurge);
318 #elif defined GNULIB_POSIXCHECK
319 # undef fpurge
320 # if HAVE_RAW_DECL_FPURGE
321 _GL_WARN_ON_USE (fpurge, "fpurge is not always present - "
322                  "use gnulib module fpurge for portability");
323 # endif
324 #endif
325
326 #if @GNULIB_FPUTC@
327 # if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
328 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
329 #   undef fputc
330 #   define fputc rpl_fputc
331 #  endif
332 _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
333 _GL_CXXALIAS_RPL (fputc, int, (int c, FILE *stream));
334 # else
335 _GL_CXXALIAS_SYS (fputc, int, (int c, FILE *stream));
336 # endif
337 _GL_CXXALIASWARN (fputc);
338 #endif
339
340 #if @GNULIB_FPUTS@
341 # if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
342 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
343 #   undef fputs
344 #   define fputs rpl_fputs
345 #  endif
346 _GL_FUNCDECL_RPL (fputs, int, (const char *string, FILE *stream)
347                               _GL_ARG_NONNULL ((1, 2)));
348 _GL_CXXALIAS_RPL (fputs, int, (const char *string, FILE *stream));
349 # else
350 _GL_CXXALIAS_SYS (fputs, int, (const char *string, FILE *stream));
351 # endif
352 _GL_CXXALIASWARN (fputs);
353 #endif
354
355 #if @GNULIB_FREAD@
356 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
357 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
358 #   undef fread
359 #   define fread rpl_fread
360 #  endif
361 _GL_FUNCDECL_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream)
362                                  _GL_ARG_NONNULL ((4)));
363 _GL_CXXALIAS_RPL (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));
364 # else
365 _GL_CXXALIAS_SYS (fread, size_t, (void *ptr, size_t s, size_t n, FILE *stream));
366 # endif
367 _GL_CXXALIASWARN (fread);
368 #endif
369
370 #if @GNULIB_FREOPEN@
371 # if @REPLACE_FREOPEN@
372 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
373 #   undef freopen
374 #   define freopen rpl_freopen
375 #  endif
376 _GL_FUNCDECL_RPL (freopen, FILE *,
377                   (const char *filename, const char *mode, FILE *stream)
378                   _GL_ARG_NONNULL ((2, 3)));
379 _GL_CXXALIAS_RPL (freopen, FILE *,
380                   (const char *filename, const char *mode, FILE *stream));
381 # else
382 _GL_CXXALIAS_SYS (freopen, FILE *,
383                   (const char *filename, const char *mode, FILE *stream));
384 # endif
385 _GL_CXXALIASWARN (freopen);
386 #elif defined GNULIB_POSIXCHECK
387 # undef freopen
388 /* Assume freopen is always declared.  */
389 _GL_WARN_ON_USE (freopen,
390                  "freopen on native Windows platforms is not POSIX compliant - "
391                  "use gnulib module freopen for portability");
392 #endif
393
394 #if @GNULIB_FSCANF@
395 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
396 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
397 #   undef fscanf
398 #   define fscanf rpl_fscanf
399 #  endif
400 _GL_FUNCDECL_RPL (fscanf, int, (FILE *stream, const char *format, ...)
401                                _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 3)
402                                _GL_ARG_NONNULL ((1, 2)));
403 _GL_CXXALIAS_RPL (fscanf, int, (FILE *stream, const char *format, ...));
404 # else
405 _GL_CXXALIAS_SYS (fscanf, int, (FILE *stream, const char *format, ...));
406 # endif
407 _GL_CXXALIASWARN (fscanf);
408 #endif
409
410
411 /* Set up the following warnings, based on which modules are in use.
412    GNU Coding Standards discourage the use of fseek, since it imposes
413    an arbitrary limitation on some 32-bit hosts.  Remember that the
414    fseek module depends on the fseeko module, so we only have three
415    cases to consider:
416
417    1. The developer is not using either module.  Issue a warning under
418    GNULIB_POSIXCHECK for both functions, to remind them that both
419    functions have bugs on some systems.  _GL_NO_LARGE_FILES has no
420    impact on this warning.
421
422    2. The developer is using both modules.  They may be unaware of the
423    arbitrary limitations of fseek, so issue a warning under
424    GNULIB_POSIXCHECK.  On the other hand, they may be using both
425    modules intentionally, so the developer can define
426    _GL_NO_LARGE_FILES in the compilation units where the use of fseek
427    is safe, to silence the warning.
428
429    3. The developer is using the fseeko module, but not fseek.  Gnulib
430    guarantees that fseek will still work around platform bugs in that
431    case, but we presume that the developer is aware of the pitfalls of
432    fseek and was trying to avoid it, so issue a warning even when
433    GNULIB_POSIXCHECK is undefined.  Again, _GL_NO_LARGE_FILES can be
434    defined to silence the warning in particular compilation units.
435    In C++ compilations with GNULIB_NAMESPACE, in order to avoid that
436    fseek gets defined as a macro, it is recommended that the developer
437    uses the fseek module, even if he is not calling the fseek function.
438
439    Most gnulib clients that perform stream operations should fall into
440    category 3.  */
441
442 #if @GNULIB_FSEEK@
443 # if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES
444 #  define _GL_FSEEK_WARN /* Category 2, above.  */
445 #  undef fseek
446 # endif
447 # if @REPLACE_FSEEK@
448 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
449 #   undef fseek
450 #   define fseek rpl_fseek
451 #  endif
452 _GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence)
453                               _GL_ARG_NONNULL ((1)));
454 _GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence));
455 # else
456 _GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence));
457 # endif
458 _GL_CXXALIASWARN (fseek);
459 #endif
460
461 #if @GNULIB_FSEEKO@
462 # if !@GNULIB_FSEEK@ && !defined _GL_NO_LARGE_FILES
463 #  define _GL_FSEEK_WARN /* Category 3, above.  */
464 #  undef fseek
465 # endif
466 # if @REPLACE_FSEEKO@
467 /* Provide an fseeko function that is aware of a preceding fflush(), and which
468    detects pipes.  */
469 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
470 #   undef fseeko
471 #   define fseeko rpl_fseeko
472 #  endif
473 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
474                                _GL_ARG_NONNULL ((1)));
475 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
476 # else
477 #  if ! @HAVE_DECL_FSEEKO@
478 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
479                                _GL_ARG_NONNULL ((1)));
480 #  endif
481 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
482 # endif
483 _GL_CXXALIASWARN (fseeko);
484 #elif defined GNULIB_POSIXCHECK
485 # define _GL_FSEEK_WARN /* Category 1, above.  */
486 # undef fseek
487 # undef fseeko
488 # if HAVE_RAW_DECL_FSEEKO
489 _GL_WARN_ON_USE (fseeko, "fseeko is unportable - "
490                  "use gnulib module fseeko for portability");
491 # endif
492 #endif
493
494 #ifdef _GL_FSEEK_WARN
495 # undef _GL_FSEEK_WARN
496 /* Here, either fseek is undefined (but C89 guarantees that it is
497    declared), or it is defined as rpl_fseek (declared above).  */
498 _GL_WARN_ON_USE (fseek, "fseek cannot handle files larger than 4 GB "
499                  "on 32-bit platforms - "
500                  "use fseeko function for handling of large files");
501 #endif
502
503
504 /* ftell, ftello.  See the comments on fseek/fseeko.  */
505
506 #if @GNULIB_FTELL@
507 # if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES
508 #  define _GL_FTELL_WARN /* Category 2, above.  */
509 #  undef ftell
510 # endif
511 # if @REPLACE_FTELL@
512 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
513 #   undef ftell
514 #   define ftell rpl_ftell
515 #  endif
516 _GL_FUNCDECL_RPL (ftell, long, (FILE *fp) _GL_ARG_NONNULL ((1)));
517 _GL_CXXALIAS_RPL (ftell, long, (FILE *fp));
518 # else
519 _GL_CXXALIAS_SYS (ftell, long, (FILE *fp));
520 # endif
521 _GL_CXXALIASWARN (ftell);
522 #endif
523
524 #if @GNULIB_FTELLO@
525 # if !@GNULIB_FTELL@ && !defined _GL_NO_LARGE_FILES
526 #  define _GL_FTELL_WARN /* Category 3, above.  */
527 #  undef ftell
528 # endif
529 # if @REPLACE_FTELLO@
530 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
531 #   undef ftello
532 #   define ftello rpl_ftello
533 #  endif
534 _GL_FUNCDECL_RPL (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));
535 _GL_CXXALIAS_RPL (ftello, off_t, (FILE *fp));
536 # else
537 #  if ! @HAVE_DECL_FTELLO@
538 _GL_FUNCDECL_SYS (ftello, off_t, (FILE *fp) _GL_ARG_NONNULL ((1)));
539 #  endif
540 _GL_CXXALIAS_SYS (ftello, off_t, (FILE *fp));
541 # endif
542 _GL_CXXALIASWARN (ftello);
543 #elif defined GNULIB_POSIXCHECK
544 # define _GL_FTELL_WARN /* Category 1, above.  */
545 # undef ftell
546 # undef ftello
547 # if HAVE_RAW_DECL_FTELLO
548 _GL_WARN_ON_USE (ftello, "ftello is unportable - "
549                  "use gnulib module ftello for portability");
550 # endif
551 #endif
552
553 #ifdef _GL_FTELL_WARN
554 # undef _GL_FTELL_WARN
555 /* Here, either ftell is undefined (but C89 guarantees that it is
556    declared), or it is defined as rpl_ftell (declared above).  */
557 _GL_WARN_ON_USE (ftell, "ftell cannot handle files larger than 4 GB "
558                  "on 32-bit platforms - "
559                  "use ftello function for handling of large files");
560 #endif
561
562
563 #if @GNULIB_FWRITE@
564 # if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
565 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
566 #   undef fwrite
567 #   define fwrite rpl_fwrite
568 #  endif
569 _GL_FUNCDECL_RPL (fwrite, size_t,
570                   (const void *ptr, size_t s, size_t n, FILE *stream)
571                   _GL_ARG_NONNULL ((1, 4)));
572 _GL_CXXALIAS_RPL (fwrite, size_t,
573                   (const void *ptr, size_t s, size_t n, FILE *stream));
574 # else
575 _GL_CXXALIAS_SYS (fwrite, size_t,
576                   (const void *ptr, size_t s, size_t n, FILE *stream));
577
578 /* Work around glibc bug 11959
579    <http://sources.redhat.com/bugzilla/show_bug.cgi?id=11959>,
580    which sometimes causes an unwanted diagnostic for fwrite calls.
581    This affects only function declaration attributes under certain
582    versions of gcc, and is not needed for C++.  */
583 #  if !defined __cplusplus && 0 < __USE_FORTIFY_LEVEL \
584   && 3 < (__GNUC__ + (4 <= __GNUC_MINOR__))
585 #   undef fwrite
586 #   define fwrite(a, b, c, d) ({size_t __r = fwrite (a, b, c, d); __r; })
587 #  endif
588 # endif
589 _GL_CXXALIASWARN (fwrite);
590 #endif
591
592 #if @GNULIB_GETC@
593 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
594 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
595 #   undef getc
596 #   define getc rpl_fgetc
597 #  endif
598 _GL_FUNCDECL_RPL (fgetc, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
599 _GL_CXXALIAS_RPL_1 (getc, rpl_fgetc, int, (FILE *stream));
600 # else
601 _GL_CXXALIAS_SYS (getc, int, (FILE *stream));
602 # endif
603 _GL_CXXALIASWARN (getc);
604 #endif
605
606 #if @GNULIB_GETCHAR@
607 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
608 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
609 #   undef getchar
610 #   define getchar rpl_getchar
611 #  endif
612 _GL_FUNCDECL_RPL (getchar, int, (void));
613 _GL_CXXALIAS_RPL (getchar, int, (void));
614 # else
615 _GL_CXXALIAS_SYS (getchar, int, (void));
616 # endif
617 _GL_CXXALIASWARN (getchar);
618 #endif
619
620 #if @GNULIB_GETDELIM@
621 /* Read input, up to (and including) the next occurrence of DELIMITER, from
622    STREAM, store it in *LINEPTR (and NUL-terminate it).
623    *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE
624    bytes of space.  It is realloc'd as necessary.
625    Return the number of bytes read and stored at *LINEPTR (not including the
626    NUL terminator), or -1 on error or EOF.  */
627 # if @REPLACE_GETDELIM@
628 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
629 #   undef getdelim
630 #   define getdelim rpl_getdelim
631 #  endif
632 _GL_FUNCDECL_RPL (getdelim, ssize_t,
633                   (char **lineptr, size_t *linesize, int delimiter,
634                    FILE *stream)
635                   _GL_ARG_NONNULL ((1, 2, 4)));
636 _GL_CXXALIAS_RPL (getdelim, ssize_t,
637                   (char **lineptr, size_t *linesize, int delimiter,
638                    FILE *stream));
639 # else
640 #  if !@HAVE_DECL_GETDELIM@
641 _GL_FUNCDECL_SYS (getdelim, ssize_t,
642                   (char **lineptr, size_t *linesize, int delimiter,
643                    FILE *stream)
644                   _GL_ARG_NONNULL ((1, 2, 4)));
645 #  endif
646 _GL_CXXALIAS_SYS (getdelim, ssize_t,
647                   (char **lineptr, size_t *linesize, int delimiter,
648                    FILE *stream));
649 # endif
650 _GL_CXXALIASWARN (getdelim);
651 #elif defined GNULIB_POSIXCHECK
652 # undef getdelim
653 # if HAVE_RAW_DECL_GETDELIM
654 _GL_WARN_ON_USE (getdelim, "getdelim is unportable - "
655                  "use gnulib module getdelim for portability");
656 # endif
657 #endif
658
659 #if @GNULIB_GETLINE@
660 /* Read a line, up to (and including) the next newline, from STREAM, store it
661    in *LINEPTR (and NUL-terminate it).
662    *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE
663    bytes of space.  It is realloc'd as necessary.
664    Return the number of bytes read and stored at *LINEPTR (not including the
665    NUL terminator), or -1 on error or EOF.  */
666 # if @REPLACE_GETLINE@
667 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
668 #   undef getline
669 #   define getline rpl_getline
670 #  endif
671 _GL_FUNCDECL_RPL (getline, ssize_t,
672                   (char **lineptr, size_t *linesize, FILE *stream)
673                   _GL_ARG_NONNULL ((1, 2, 3)));
674 _GL_CXXALIAS_RPL (getline, ssize_t,
675                   (char **lineptr, size_t *linesize, FILE *stream));
676 # else
677 #  if !@HAVE_DECL_GETLINE@
678 _GL_FUNCDECL_SYS (getline, ssize_t,
679                   (char **lineptr, size_t *linesize, FILE *stream)
680                   _GL_ARG_NONNULL ((1, 2, 3)));
681 #  endif
682 _GL_CXXALIAS_SYS (getline, ssize_t,
683                   (char **lineptr, size_t *linesize, FILE *stream));
684 # endif
685 # if @HAVE_DECL_GETLINE@
686 _GL_CXXALIASWARN (getline);
687 # endif
688 #elif defined GNULIB_POSIXCHECK
689 # undef getline
690 # if HAVE_RAW_DECL_GETLINE
691 _GL_WARN_ON_USE (getline, "getline is unportable - "
692                  "use gnulib module getline for portability");
693 # endif
694 #endif
695
696 /* It is very rare that the developer ever has full control of stdin,
697    so any use of gets warrants an unconditional warning; besides, C11
698    removed it.  */
699 #undef gets
700 #if HAVE_RAW_DECL_GETS
701 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
702 #endif
703
704
705 #if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@
706 struct obstack;
707 /* Grow an obstack with formatted output.  Return the number of
708    bytes added to OBS.  No trailing nul byte is added, and the
709    object should be closed with obstack_finish before use.  Upon
710    memory allocation error, call obstack_alloc_failed_handler.  Upon
711    other error, return -1.  */
712 # if @REPLACE_OBSTACK_PRINTF@
713 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
714 #   define obstack_printf rpl_obstack_printf
715 #  endif
716 _GL_FUNCDECL_RPL (obstack_printf, int,
717                   (struct obstack *obs, const char *format, ...)
718                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
719                   _GL_ARG_NONNULL ((1, 2)));
720 _GL_CXXALIAS_RPL (obstack_printf, int,
721                   (struct obstack *obs, const char *format, ...));
722 # else
723 #  if !@HAVE_DECL_OBSTACK_PRINTF@
724 _GL_FUNCDECL_SYS (obstack_printf, int,
725                   (struct obstack *obs, const char *format, ...)
726                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
727                   _GL_ARG_NONNULL ((1, 2)));
728 #  endif
729 _GL_CXXALIAS_SYS (obstack_printf, int,
730                   (struct obstack *obs, const char *format, ...));
731 # endif
732 _GL_CXXALIASWARN (obstack_printf);
733 # if @REPLACE_OBSTACK_PRINTF@
734 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
735 #   define obstack_vprintf rpl_obstack_vprintf
736 #  endif
737 _GL_FUNCDECL_RPL (obstack_vprintf, int,
738                   (struct obstack *obs, const char *format, va_list args)
739                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
740                   _GL_ARG_NONNULL ((1, 2)));
741 _GL_CXXALIAS_RPL (obstack_vprintf, int,
742                   (struct obstack *obs, const char *format, va_list args));
743 # else
744 #  if !@HAVE_DECL_OBSTACK_PRINTF@
745 _GL_FUNCDECL_SYS (obstack_vprintf, int,
746                   (struct obstack *obs, const char *format, va_list args)
747                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
748                   _GL_ARG_NONNULL ((1, 2)));
749 #  endif
750 _GL_CXXALIAS_SYS (obstack_vprintf, int,
751                   (struct obstack *obs, const char *format, va_list args));
752 # endif
753 _GL_CXXALIASWARN (obstack_vprintf);
754 #endif
755
756 #if @GNULIB_PCLOSE@
757 # if !@HAVE_PCLOSE@
758 _GL_FUNCDECL_SYS (pclose, int, (FILE *stream) _GL_ARG_NONNULL ((1)));
759 # endif
760 _GL_CXXALIAS_SYS (pclose, int, (FILE *stream));
761 _GL_CXXALIASWARN (pclose);
762 #elif defined GNULIB_POSIXCHECK
763 # undef pclose
764 # if HAVE_RAW_DECL_PCLOSE
765 _GL_WARN_ON_USE (pclose, "pclose is unportable - "
766                  "use gnulib module pclose for more portability");
767 # endif
768 #endif
769
770 #if @GNULIB_PERROR@
771 /* Print a message to standard error, describing the value of ERRNO,
772    (if STRING is not NULL and not empty) prefixed with STRING and ": ",
773    and terminated with a newline.  */
774 # if @REPLACE_PERROR@
775 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
776 #   define perror rpl_perror
777 #  endif
778 _GL_FUNCDECL_RPL (perror, void, (const char *string));
779 _GL_CXXALIAS_RPL (perror, void, (const char *string));
780 # else
781 _GL_CXXALIAS_SYS (perror, void, (const char *string));
782 # endif
783 _GL_CXXALIASWARN (perror);
784 #elif defined GNULIB_POSIXCHECK
785 # undef perror
786 /* Assume perror is always declared.  */
787 _GL_WARN_ON_USE (perror, "perror is not always POSIX compliant - "
788                  "use gnulib module perror for portability");
789 #endif
790
791 #if @GNULIB_POPEN@
792 # if @REPLACE_POPEN@
793 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
794 #   undef popen
795 #   define popen rpl_popen
796 #  endif
797 _GL_FUNCDECL_RPL (popen, FILE *, (const char *cmd, const char *mode)
798                                  _GL_ARG_NONNULL ((1, 2)));
799 _GL_CXXALIAS_RPL (popen, FILE *, (const char *cmd, const char *mode));
800 # else
801 #  if !@HAVE_POPEN@
802 _GL_FUNCDECL_SYS (popen, FILE *, (const char *cmd, const char *mode)
803                                  _GL_ARG_NONNULL ((1, 2)));
804 #  endif
805 _GL_CXXALIAS_SYS (popen, FILE *, (const char *cmd, const char *mode));
806 # endif
807 _GL_CXXALIASWARN (popen);
808 #elif defined GNULIB_POSIXCHECK
809 # undef popen
810 # if HAVE_RAW_DECL_POPEN
811 _GL_WARN_ON_USE (popen, "popen is buggy on some platforms - "
812                  "use gnulib module popen or pipe for more portability");
813 # endif
814 #endif
815
816 #if @GNULIB_PRINTF_POSIX@ || @GNULIB_PRINTF@
817 # if (@GNULIB_PRINTF_POSIX@ && @REPLACE_PRINTF@) \
818      || (@GNULIB_PRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
819 #  if defined __GNUC__
820 #   if !(defined __cplusplus && defined GNULIB_NAMESPACE)
821 /* Don't break __attribute__((format(printf,M,N))).  */
822 #    define printf __printf__
823 #   endif
824 #   if @GNULIB_PRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@
825 _GL_FUNCDECL_RPL_1 (__printf__, int,
826                     (const char *format, ...)
827                     __asm__ (@ASM_SYMBOL_PREFIX@
828                              _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))
829                     _GL_ATTRIBUTE_FORMAT_PRINTF (1, 2)
830                     _GL_ARG_NONNULL ((1)));
831 #   else
832 _GL_FUNCDECL_RPL_1 (__printf__, int,
833                     (const char *format, ...)
834                     __asm__ (@ASM_SYMBOL_PREFIX@
835                              _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_printf))
836                     _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 2)
837                     _GL_ARG_NONNULL ((1)));
838 #   endif
839 _GL_CXXALIAS_RPL_1 (printf, __printf__, int, (const char *format, ...));
840 #  else
841 #   if !(defined __cplusplus && defined GNULIB_NAMESPACE)
842 #    define printf rpl_printf
843 #   endif
844 _GL_FUNCDECL_RPL (printf, int,
845                   (const char *format, ...)
846                   _GL_ATTRIBUTE_FORMAT_PRINTF (1, 2)
847                   _GL_ARG_NONNULL ((1)));
848 _GL_CXXALIAS_RPL (printf, int, (const char *format, ...));
849 #  endif
850 #  define GNULIB_overrides_printf 1
851 # else
852 _GL_CXXALIAS_SYS (printf, int, (const char *format, ...));
853 # endif
854 _GL_CXXALIASWARN (printf);
855 #endif
856 #if !@GNULIB_PRINTF_POSIX@ && defined GNULIB_POSIXCHECK
857 # if !GNULIB_overrides_printf
858 #  undef printf
859 # endif
860 /* Assume printf is always declared.  */
861 _GL_WARN_ON_USE (printf, "printf is not always POSIX compliant - "
862                  "use gnulib module printf-posix for portable "
863                  "POSIX compliance");
864 #endif
865
866 #if @GNULIB_PUTC@
867 # if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
868 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
869 #   undef putc
870 #   define putc rpl_fputc
871 #  endif
872 _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2)));
873 _GL_CXXALIAS_RPL_1 (putc, rpl_fputc, int, (int c, FILE *stream));
874 # else
875 _GL_CXXALIAS_SYS (putc, int, (int c, FILE *stream));
876 # endif
877 _GL_CXXALIASWARN (putc);
878 #endif
879
880 #if @GNULIB_PUTCHAR@
881 # if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
882 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
883 #   undef putchar
884 #   define putchar rpl_putchar
885 #  endif
886 _GL_FUNCDECL_RPL (putchar, int, (int c));
887 _GL_CXXALIAS_RPL (putchar, int, (int c));
888 # else
889 _GL_CXXALIAS_SYS (putchar, int, (int c));
890 # endif
891 _GL_CXXALIASWARN (putchar);
892 #endif
893
894 #if @GNULIB_PUTS@
895 # if @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@)
896 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
897 #   undef puts
898 #   define puts rpl_puts
899 #  endif
900 _GL_FUNCDECL_RPL (puts, int, (const char *string) _GL_ARG_NONNULL ((1)));
901 _GL_CXXALIAS_RPL (puts, int, (const char *string));
902 # else
903 _GL_CXXALIAS_SYS (puts, int, (const char *string));
904 # endif
905 _GL_CXXALIASWARN (puts);
906 #endif
907
908 #if @GNULIB_REMOVE@
909 # if @REPLACE_REMOVE@
910 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
911 #   undef remove
912 #   define remove rpl_remove
913 #  endif
914 _GL_FUNCDECL_RPL (remove, int, (const char *name) _GL_ARG_NONNULL ((1)));
915 _GL_CXXALIAS_RPL (remove, int, (const char *name));
916 # else
917 _GL_CXXALIAS_SYS (remove, int, (const char *name));
918 # endif
919 _GL_CXXALIASWARN (remove);
920 #elif defined GNULIB_POSIXCHECK
921 # undef remove
922 /* Assume remove is always declared.  */
923 _GL_WARN_ON_USE (remove, "remove cannot handle directories on some platforms - "
924                  "use gnulib module remove for more portability");
925 #endif
926
927 #if @GNULIB_RENAME@
928 # if @REPLACE_RENAME@
929 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
930 #   undef rename
931 #   define rename rpl_rename
932 #  endif
933 _GL_FUNCDECL_RPL (rename, int,
934                   (const char *old_filename, const char *new_filename)
935                   _GL_ARG_NONNULL ((1, 2)));
936 _GL_CXXALIAS_RPL (rename, int,
937                   (const char *old_filename, const char *new_filename));
938 # else
939 _GL_CXXALIAS_SYS (rename, int,
940                   (const char *old_filename, const char *new_filename));
941 # endif
942 _GL_CXXALIASWARN (rename);
943 #elif defined GNULIB_POSIXCHECK
944 # undef rename
945 /* Assume rename is always declared.  */
946 _GL_WARN_ON_USE (rename, "rename is buggy on some platforms - "
947                  "use gnulib module rename for more portability");
948 #endif
949
950 #if @GNULIB_RENAMEAT@
951 # if @REPLACE_RENAMEAT@
952 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
953 #   undef renameat
954 #   define renameat rpl_renameat
955 #  endif
956 _GL_FUNCDECL_RPL (renameat, int,
957                   (int fd1, char const *file1, int fd2, char const *file2)
958                   _GL_ARG_NONNULL ((2, 4)));
959 _GL_CXXALIAS_RPL (renameat, int,
960                   (int fd1, char const *file1, int fd2, char const *file2));
961 # else
962 #  if !@HAVE_RENAMEAT@
963 _GL_FUNCDECL_SYS (renameat, int,
964                   (int fd1, char const *file1, int fd2, char const *file2)
965                   _GL_ARG_NONNULL ((2, 4)));
966 #  endif
967 _GL_CXXALIAS_SYS (renameat, int,
968                   (int fd1, char const *file1, int fd2, char const *file2));
969 # endif
970 _GL_CXXALIASWARN (renameat);
971 #elif defined GNULIB_POSIXCHECK
972 # undef renameat
973 # if HAVE_RAW_DECL_RENAMEAT
974 _GL_WARN_ON_USE (renameat, "renameat is not portable - "
975                  "use gnulib module renameat for portability");
976 # endif
977 #endif
978
979 #if @GNULIB_SCANF@
980 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
981 #  if defined __GNUC__
982 #   if !(defined __cplusplus && defined GNULIB_NAMESPACE)
983 #    undef scanf
984 /* Don't break __attribute__((format(scanf,M,N))).  */
985 #    define scanf __scanf__
986 #   endif
987 _GL_FUNCDECL_RPL_1 (__scanf__, int,
988                     (const char *format, ...)
989                     __asm__ (@ASM_SYMBOL_PREFIX@
990                              _GL_STDIO_MACROEXPAND_AND_STRINGIZE(rpl_scanf))
991                     _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)
992                     _GL_ARG_NONNULL ((1)));
993 _GL_CXXALIAS_RPL_1 (scanf, __scanf__, int, (const char *format, ...));
994 #  else
995 #   if !(defined __cplusplus && defined GNULIB_NAMESPACE)
996 #    undef scanf
997 #    define scanf rpl_scanf
998 #   endif
999 _GL_FUNCDECL_RPL (scanf, int, (const char *format, ...)
1000                               _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 2)
1001                               _GL_ARG_NONNULL ((1)));
1002 _GL_CXXALIAS_RPL (scanf, int, (const char *format, ...));
1003 #  endif
1004 # else
1005 _GL_CXXALIAS_SYS (scanf, int, (const char *format, ...));
1006 # endif
1007 _GL_CXXALIASWARN (scanf);
1008 #endif
1009
1010 #if @GNULIB_SNPRINTF@
1011 # if @REPLACE_SNPRINTF@
1012 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1013 #   define snprintf rpl_snprintf
1014 #  endif
1015 _GL_FUNCDECL_RPL (snprintf, int,
1016                   (char *str, size_t size, const char *format, ...)
1017                   _GL_ATTRIBUTE_FORMAT_PRINTF (3, 4)
1018                   _GL_ARG_NONNULL ((3)));
1019 _GL_CXXALIAS_RPL (snprintf, int,
1020                   (char *str, size_t size, const char *format, ...));
1021 # else
1022 #  if !@HAVE_DECL_SNPRINTF@
1023 _GL_FUNCDECL_SYS (snprintf, int,
1024                   (char *str, size_t size, const char *format, ...)
1025                   _GL_ATTRIBUTE_FORMAT_PRINTF (3, 4)
1026                   _GL_ARG_NONNULL ((3)));
1027 #  endif
1028 _GL_CXXALIAS_SYS (snprintf, int,
1029                   (char *str, size_t size, const char *format, ...));
1030 # endif
1031 _GL_CXXALIASWARN (snprintf);
1032 #elif defined GNULIB_POSIXCHECK
1033 # undef snprintf
1034 # if HAVE_RAW_DECL_SNPRINTF
1035 _GL_WARN_ON_USE (snprintf, "snprintf is unportable - "
1036                  "use gnulib module snprintf for portability");
1037 # endif
1038 #endif
1039
1040 /* Some people would argue that all sprintf uses should be warned about
1041    (for example, OpenBSD issues a link warning for it),
1042    since it can cause security holes due to buffer overruns.
1043    However, we believe that sprintf can be used safely, and is more
1044    efficient than snprintf in those safe cases; and as proof of our
1045    belief, we use sprintf in several gnulib modules.  So this header
1046    intentionally avoids adding a warning to sprintf except when
1047    GNULIB_POSIXCHECK is defined.  */
1048
1049 #if @GNULIB_SPRINTF_POSIX@
1050 # if @REPLACE_SPRINTF@
1051 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1052 #   define sprintf rpl_sprintf
1053 #  endif
1054 _GL_FUNCDECL_RPL (sprintf, int, (char *str, const char *format, ...)
1055                                 _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
1056                                 _GL_ARG_NONNULL ((1, 2)));
1057 _GL_CXXALIAS_RPL (sprintf, int, (char *str, const char *format, ...));
1058 # else
1059 _GL_CXXALIAS_SYS (sprintf, int, (char *str, const char *format, ...));
1060 # endif
1061 _GL_CXXALIASWARN (sprintf);
1062 #elif defined GNULIB_POSIXCHECK
1063 # undef sprintf
1064 /* Assume sprintf is always declared.  */
1065 _GL_WARN_ON_USE (sprintf, "sprintf is not always POSIX compliant - "
1066                  "use gnulib module sprintf-posix for portable "
1067                  "POSIX compliance");
1068 #endif
1069
1070 #if @GNULIB_TMPFILE@
1071 # if @REPLACE_TMPFILE@
1072 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1073 #   define tmpfile rpl_tmpfile
1074 #  endif
1075 _GL_FUNCDECL_RPL (tmpfile, FILE *, (void));
1076 _GL_CXXALIAS_RPL (tmpfile, FILE *, (void));
1077 # else
1078 _GL_CXXALIAS_SYS (tmpfile, FILE *, (void));
1079 # endif
1080 _GL_CXXALIASWARN (tmpfile);
1081 #elif defined GNULIB_POSIXCHECK
1082 # undef tmpfile
1083 # if HAVE_RAW_DECL_TMPFILE
1084 _GL_WARN_ON_USE (tmpfile, "tmpfile is not usable on mingw - "
1085                  "use gnulib module tmpfile for portability");
1086 # endif
1087 #endif
1088
1089 #if @GNULIB_VASPRINTF@
1090 /* Write formatted output to a string dynamically allocated with malloc().
1091    If the memory allocation succeeds, store the address of the string in
1092    *RESULT and return the number of resulting bytes, excluding the trailing
1093    NUL.  Upon memory allocation error, or some other error, return -1.  */
1094 # if @REPLACE_VASPRINTF@
1095 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1096 #   define asprintf rpl_asprintf
1097 #  endif
1098 _GL_FUNCDECL_RPL (asprintf, int,
1099                   (char **result, const char *format, ...)
1100                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
1101                   _GL_ARG_NONNULL ((1, 2)));
1102 _GL_CXXALIAS_RPL (asprintf, int,
1103                   (char **result, const char *format, ...));
1104 # else
1105 #  if !@HAVE_VASPRINTF@
1106 _GL_FUNCDECL_SYS (asprintf, int,
1107                   (char **result, const char *format, ...)
1108                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 3)
1109                   _GL_ARG_NONNULL ((1, 2)));
1110 #  endif
1111 _GL_CXXALIAS_SYS (asprintf, int,
1112                   (char **result, const char *format, ...));
1113 # endif
1114 _GL_CXXALIASWARN (asprintf);
1115 # if @REPLACE_VASPRINTF@
1116 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1117 #   define vasprintf rpl_vasprintf
1118 #  endif
1119 _GL_FUNCDECL_RPL (vasprintf, int,
1120                   (char **result, const char *format, va_list args)
1121                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
1122                   _GL_ARG_NONNULL ((1, 2)));
1123 _GL_CXXALIAS_RPL (vasprintf, int,
1124                   (char **result, const char *format, va_list args));
1125 # else
1126 #  if !@HAVE_VASPRINTF@
1127 _GL_FUNCDECL_SYS (vasprintf, int,
1128                   (char **result, const char *format, va_list args)
1129                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
1130                   _GL_ARG_NONNULL ((1, 2)));
1131 #  endif
1132 _GL_CXXALIAS_SYS (vasprintf, int,
1133                   (char **result, const char *format, va_list args));
1134 # endif
1135 _GL_CXXALIASWARN (vasprintf);
1136 #endif
1137
1138 #if @GNULIB_VDPRINTF@
1139 # if @REPLACE_VDPRINTF@
1140 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1141 #   define vdprintf rpl_vdprintf
1142 #  endif
1143 _GL_FUNCDECL_RPL (vdprintf, int, (int fd, const char *format, va_list args)
1144                                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
1145                                  _GL_ARG_NONNULL ((2)));
1146 _GL_CXXALIAS_RPL (vdprintf, int, (int fd, const char *format, va_list args));
1147 # else
1148 #  if !@HAVE_VDPRINTF@
1149 _GL_FUNCDECL_SYS (vdprintf, int, (int fd, const char *format, va_list args)
1150                                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
1151                                  _GL_ARG_NONNULL ((2)));
1152 #  endif
1153 /* Need to cast, because on Solaris, the third parameter will likely be
1154                                                     __va_list args.  */
1155 _GL_CXXALIAS_SYS_CAST (vdprintf, int,
1156                        (int fd, const char *format, va_list args));
1157 # endif
1158 _GL_CXXALIASWARN (vdprintf);
1159 #elif defined GNULIB_POSIXCHECK
1160 # undef vdprintf
1161 # if HAVE_RAW_DECL_VDPRINTF
1162 _GL_WARN_ON_USE (vdprintf, "vdprintf is unportable - "
1163                  "use gnulib module vdprintf for portability");
1164 # endif
1165 #endif
1166
1167 #if @GNULIB_VFPRINTF_POSIX@ || @GNULIB_VFPRINTF@
1168 # if (@GNULIB_VFPRINTF_POSIX@ && @REPLACE_VFPRINTF@) \
1169      || (@GNULIB_VFPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
1170 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1171 #   define vfprintf rpl_vfprintf
1172 #  endif
1173 #  define GNULIB_overrides_vfprintf 1
1174 #  if @GNULIB_VFPRINTF_POSIX@
1175 _GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)
1176                                  _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
1177                                  _GL_ARG_NONNULL ((1, 2)));
1178 #  else
1179 _GL_FUNCDECL_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args)
1180                                  _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (2, 0)
1181                                  _GL_ARG_NONNULL ((1, 2)));
1182 #  endif
1183 _GL_CXXALIAS_RPL (vfprintf, int, (FILE *fp, const char *format, va_list args));
1184 # else
1185 /* Need to cast, because on Solaris, the third parameter is
1186                                                       __va_list args
1187    and GCC's fixincludes did not change this to __gnuc_va_list.  */
1188 _GL_CXXALIAS_SYS_CAST (vfprintf, int,
1189                        (FILE *fp, const char *format, va_list args));
1190 # endif
1191 _GL_CXXALIASWARN (vfprintf);
1192 #endif
1193 #if !@GNULIB_VFPRINTF_POSIX@ && defined GNULIB_POSIXCHECK
1194 # if !GNULIB_overrides_vfprintf
1195 #  undef vfprintf
1196 # endif
1197 /* Assume vfprintf is always declared.  */
1198 _GL_WARN_ON_USE (vfprintf, "vfprintf is not always POSIX compliant - "
1199                  "use gnulib module vfprintf-posix for portable "
1200                       "POSIX compliance");
1201 #endif
1202
1203 #if @GNULIB_VFSCANF@
1204 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
1205 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1206 #   undef vfscanf
1207 #   define vfscanf rpl_vfscanf
1208 #  endif
1209 _GL_FUNCDECL_RPL (vfscanf, int,
1210                   (FILE *stream, const char *format, va_list args)
1211                   _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (2, 0)
1212                   _GL_ARG_NONNULL ((1, 2)));
1213 _GL_CXXALIAS_RPL (vfscanf, int,
1214                   (FILE *stream, const char *format, va_list args));
1215 # else
1216 _GL_CXXALIAS_SYS (vfscanf, int,
1217                   (FILE *stream, const char *format, va_list args));
1218 # endif
1219 _GL_CXXALIASWARN (vfscanf);
1220 #endif
1221
1222 #if @GNULIB_VPRINTF_POSIX@ || @GNULIB_VPRINTF@
1223 # if (@GNULIB_VPRINTF_POSIX@ && @REPLACE_VPRINTF@) \
1224      || (@GNULIB_VPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && (@GNULIB_STDIO_H_NONBLOCKING@ || @GNULIB_STDIO_H_SIGPIPE@))
1225 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1226 #   define vprintf rpl_vprintf
1227 #  endif
1228 #  define GNULIB_overrides_vprintf 1
1229 #  if @GNULIB_VPRINTF_POSIX@ || @GNULIB_VFPRINTF_POSIX@
1230 _GL_FUNCDECL_RPL (vprintf, int, (const char *format, va_list args)
1231                                 _GL_ATTRIBUTE_FORMAT_PRINTF (1, 0)
1232                                 _GL_ARG_NONNULL ((1)));
1233 #  else
1234 _GL_FUNCDECL_RPL (vprintf, int, (const char *format, va_list args)
1235                                 _GL_ATTRIBUTE_FORMAT_PRINTF_SYSTEM (1, 0)
1236                                 _GL_ARG_NONNULL ((1)));
1237 #  endif
1238 _GL_CXXALIAS_RPL (vprintf, int, (const char *format, va_list args));
1239 # else
1240 /* Need to cast, because on Solaris, the second parameter is
1241                                                           __va_list args
1242    and GCC's fixincludes did not change this to __gnuc_va_list.  */
1243 _GL_CXXALIAS_SYS_CAST (vprintf, int, (const char *format, va_list args));
1244 # endif
1245 _GL_CXXALIASWARN (vprintf);
1246 #endif
1247 #if !@GNULIB_VPRINTF_POSIX@ && defined GNULIB_POSIXCHECK
1248 # if !GNULIB_overrides_vprintf
1249 #  undef vprintf
1250 # endif
1251 /* Assume vprintf is always declared.  */
1252 _GL_WARN_ON_USE (vprintf, "vprintf is not always POSIX compliant - "
1253                  "use gnulib module vprintf-posix for portable "
1254                  "POSIX compliance");
1255 #endif
1256
1257 #if @GNULIB_VSCANF@
1258 # if @REPLACE_STDIO_READ_FUNCS@ && @GNULIB_STDIO_H_NONBLOCKING@
1259 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1260 #   undef vscanf
1261 #   define vscanf rpl_vscanf
1262 #  endif
1263 _GL_FUNCDECL_RPL (vscanf, int, (const char *format, va_list args)
1264                                _GL_ATTRIBUTE_FORMAT_SCANF_SYSTEM (1, 0)
1265                                _GL_ARG_NONNULL ((1)));
1266 _GL_CXXALIAS_RPL (vscanf, int, (const char *format, va_list args));
1267 # else
1268 _GL_CXXALIAS_SYS (vscanf, int, (const char *format, va_list args));
1269 # endif
1270 _GL_CXXALIASWARN (vscanf);
1271 #endif
1272
1273 #if @GNULIB_VSNPRINTF@
1274 # if @REPLACE_VSNPRINTF@
1275 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1276 #   define vsnprintf rpl_vsnprintf
1277 #  endif
1278 _GL_FUNCDECL_RPL (vsnprintf, int,
1279                   (char *str, size_t size, const char *format, va_list args)
1280                   _GL_ATTRIBUTE_FORMAT_PRINTF (3, 0)
1281                   _GL_ARG_NONNULL ((3)));
1282 _GL_CXXALIAS_RPL (vsnprintf, int,
1283                   (char *str, size_t size, const char *format, va_list args));
1284 # else
1285 #  if !@HAVE_DECL_VSNPRINTF@
1286 _GL_FUNCDECL_SYS (vsnprintf, int,
1287                   (char *str, size_t size, const char *format, va_list args)
1288                   _GL_ATTRIBUTE_FORMAT_PRINTF (3, 0)
1289                   _GL_ARG_NONNULL ((3)));
1290 #  endif
1291 _GL_CXXALIAS_SYS (vsnprintf, int,
1292                   (char *str, size_t size, const char *format, va_list args));
1293 # endif
1294 _GL_CXXALIASWARN (vsnprintf);
1295 #elif defined GNULIB_POSIXCHECK
1296 # undef vsnprintf
1297 # if HAVE_RAW_DECL_VSNPRINTF
1298 _GL_WARN_ON_USE (vsnprintf, "vsnprintf is unportable - "
1299                  "use gnulib module vsnprintf for portability");
1300 # endif
1301 #endif
1302
1303 #if @GNULIB_VSPRINTF_POSIX@
1304 # if @REPLACE_VSPRINTF@
1305 #  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
1306 #   define vsprintf rpl_vsprintf
1307 #  endif
1308 _GL_FUNCDECL_RPL (vsprintf, int,
1309                   (char *str, const char *format, va_list args)
1310                   _GL_ATTRIBUTE_FORMAT_PRINTF (2, 0)
1311                   _GL_ARG_NONNULL ((1, 2)));
1312 _GL_CXXALIAS_RPL (vsprintf, int,
1313                   (char *str, const char *format, va_list args));
1314 # else
1315 /* Need to cast, because on Solaris, the third parameter is
1316                                                        __va_list args
1317    and GCC's fixincludes did not change this to __gnuc_va_list.  */
1318 _GL_CXXALIAS_SYS_CAST (vsprintf, int,
1319                        (char *str, const char *format, va_list args));
1320 # endif
1321 _GL_CXXALIASWARN (vsprintf);
1322 #elif defined GNULIB_POSIXCHECK
1323 # undef vsprintf
1324 /* Assume vsprintf is always declared.  */
1325 _GL_WARN_ON_USE (vsprintf, "vsprintf is not always POSIX compliant - "
1326                  "use gnulib module vsprintf-posix for portable "
1327                       "POSIX compliance");
1328 #endif
1329
1330 #endif /* _@GUARD_PREFIX@_STDIO_H */
1331 #endif /* _@GUARD_PREFIX@_STDIO_H */
1332 #endif