Mercurial > hg > octave-lojdl > gnulib-hg
annotate lib/stdio.in.h @ 12879:037f6bf7ec72
Improve *printf warning condition.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 21 Feb 2010 01:04:28 +0100 |
parents | b1c514f314de |
children | 94fe36379d80 |
rev | line source |
---|---|
9262 | 1 /* A GNU-like <stdio.h>. |
2 | |
12559
c2cbabec01dd
update nearly all FSF copyright year lists to include 2010
Jim Meyering <meyering@redhat.com>
parents:
12488
diff
changeset
|
3 Copyright (C) 2004, 2007-2010 Free Software Foundation, Inc. |
9262 | 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, write to the Free Software Foundation, | |
17 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ | |
18 | |
10655
8668b19a7032
Avoid gcc warnings because of #pragma GCC system_header on older gcc.
Bruno Haible <bruno@clisp.org>
parents:
10622
diff
changeset
|
19 #if __GNUC__ >= 3 |
10375
f96e845fc36d
Avoid some "gcc -pedantic" warnings.
Bruno Haible <bruno@clisp.org>
parents:
10205
diff
changeset
|
20 @PRAGMA_SYSTEM_HEADER@ |
10655
8668b19a7032
Avoid gcc warnings because of #pragma GCC system_header on older gcc.
Bruno Haible <bruno@clisp.org>
parents:
10622
diff
changeset
|
21 #endif |
10375
f96e845fc36d
Avoid some "gcc -pedantic" warnings.
Bruno Haible <bruno@clisp.org>
parents:
10205
diff
changeset
|
22 |
9262 | 23 #if defined __need_FILE || defined __need___FILE |
24 /* Special invocation convention inside glibc header files. */ | |
25 | |
26 #@INCLUDE_NEXT@ @NEXT_STDIO_H@ | |
27 | |
28 #else | |
29 /* Normal invocation convention. */ | |
30 | |
31 #ifndef _GL_STDIO_H | |
32 | |
33 /* The include_next requires a split double-inclusion guard. */ | |
34 #@INCLUDE_NEXT@ @NEXT_STDIO_H@ | |
35 | |
36 #ifndef _GL_STDIO_H | |
37 #define _GL_STDIO_H | |
38 | |
12600
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12584
diff
changeset
|
39 /* Get va_list. Needed on many systems, including glibc 2.8. */ |
9262 | 40 #include <stdarg.h> |
12600
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12584
diff
changeset
|
41 |
9262 | 42 #include <stddef.h> |
43 | |
12600
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12584
diff
changeset
|
44 /* Get off_t and ssize_t. Needed on many systems, including glibc 2.8. */ |
742a202062e7
stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
Bruno Haible <bruno@clisp.org>
parents:
12584
diff
changeset
|
45 #include <sys/types.h> |
9262 | 46 |
47 #ifndef __attribute__ | |
12762
410eaa89fb57
Avoid a link error due to the __printf__ symbol.
Bruno Haible <bruno@clisp.org>
parents:
12734
diff
changeset
|
48 /* The __attribute__ feature is available in gcc versions 2.5 and later. |
410eaa89fb57
Avoid a link error due to the __printf__ symbol.
Bruno Haible <bruno@clisp.org>
parents:
12734
diff
changeset
|
49 The __-protected variants of the attributes 'format' and 'printf' are |
410eaa89fb57
Avoid a link error due to the __printf__ symbol.
Bruno Haible <bruno@clisp.org>
parents:
12734
diff
changeset
|
50 accepted by gcc versions 2.6.4 (effectively 2.7) and later. |
410eaa89fb57
Avoid a link error due to the __printf__ symbol.
Bruno Haible <bruno@clisp.org>
parents:
12734
diff
changeset
|
51 We enable __attribute__ only if these are supported too, because |
410eaa89fb57
Avoid a link error due to the __printf__ symbol.
Bruno Haible <bruno@clisp.org>
parents:
12734
diff
changeset
|
52 gnulib and libintl do '#define printf __printf__' when they override |
410eaa89fb57
Avoid a link error due to the __printf__ symbol.
Bruno Haible <bruno@clisp.org>
parents:
12734
diff
changeset
|
53 the 'printf' function. */ |
9262 | 54 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7) |
12762
410eaa89fb57
Avoid a link error due to the __printf__ symbol.
Bruno Haible <bruno@clisp.org>
parents:
12734
diff
changeset
|
55 # define __attribute__(Spec) /* empty */ |
9262 | 56 # endif |
57 #endif | |
58 | |
59 | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
60 /* The definition of _GL_ARG_NONNULL is copied here. */ |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
61 |
12724 | 62 /* The definition of _GL_WARN_ON_USE is copied here. */ |
63 | |
9262 | 64 |
65 #ifdef __cplusplus | |
66 extern "C" { | |
67 #endif | |
68 | |
11971 | 69 #if @GNULIB_DPRINTF@ |
70 # if @REPLACE_DPRINTF@ | |
71 # define dprintf rpl_dprintf | |
72 # endif | |
73 # if @REPLACE_DPRINTF@ || !@HAVE_DPRINTF@ | |
74 extern int dprintf (int fd, const char *format, ...) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
75 __attribute__ ((__format__ (__printf__, 2, 3))) _GL_ARG_NONNULL ((2)); |
11971 | 76 # endif |
77 #elif defined GNULIB_POSIXCHECK | |
78 # undef dprintf | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
79 # if HAVE_RAW_DECL_DPRINTF |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
80 _GL_WARN_ON_USE (dprintf, "dprintf is unportable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
81 "use gnulib module dprintf for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
82 # endif |
11971 | 83 #endif |
84 | |
85 #if @GNULIB_FCLOSE@ | |
86 # if @REPLACE_FCLOSE@ | |
87 # define fclose rpl_fclose | |
88 /* Close STREAM and its underlying file descriptor. */ | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
89 extern int fclose (FILE *stream) _GL_ARG_NONNULL ((1)); |
11971 | 90 # endif |
91 #elif defined GNULIB_POSIXCHECK | |
92 # undef fclose | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
93 /* Assume fclose is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
94 _GL_WARN_ON_USE (fclose, "fclose is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
95 "use gnulib module fclose for portable POSIX compliance"); |
11971 | 96 #endif |
97 | |
98 #if @GNULIB_FFLUSH@ | |
99 # if @REPLACE_FFLUSH@ | |
100 # define fflush rpl_fflush | |
101 /* Flush all pending data on STREAM according to POSIX rules. Both | |
102 output and seekable input streams are supported. | |
103 Note! LOSS OF DATA can occur if fflush is applied on an input stream | |
104 that is _not_seekable_ or on an update stream that is _not_seekable_ | |
105 and in which the most recent operation was input. Seekability can | |
106 be tested with lseek(fileno(fp),0,SEEK_CUR). */ | |
107 extern int fflush (FILE *gl_stream); | |
108 # endif | |
109 #elif defined GNULIB_POSIXCHECK | |
110 # undef fflush | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
111 /* Assume fflush is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
112 _GL_WARN_ON_USE (fflush, "fflush is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
113 "use gnulib module fflush for portable POSIX compliance"); |
11971 | 114 #endif |
115 | |
12724 | 116 /* It is very rare that the developer ever has full control of stdin, |
117 so any use of gets warrants an unconditional warning. Assume it is | |
118 always declared, since it is required by C89. */ | |
119 #undef gets | |
120 _GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); | |
121 | |
11971 | 122 #if @GNULIB_FOPEN@ |
123 # if @REPLACE_FOPEN@ | |
124 # undef fopen | |
125 # define fopen rpl_fopen | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
126 extern FILE * fopen (const char *filename, const char *mode) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
127 _GL_ARG_NONNULL ((1, 2)); |
11971 | 128 # endif |
129 #elif defined GNULIB_POSIXCHECK | |
130 # undef fopen | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
131 /* Assume fopen is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
132 _GL_WARN_ON_USE (fopen, "fopen on Win32 platforms is not POSIX compatible - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
133 "use gnulib module fopen for portability"); |
11971 | 134 #endif |
9262 | 135 |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
136 #if @GNULIB_FPRINTF_POSIX@ || @GNULIB_FPRINTF@ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
137 # if (@GNULIB_FPRINTF_POSIX@ && @REPLACE_FPRINTF@) \ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
138 || (@GNULIB_FPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@) |
9262 | 139 # define fprintf rpl_fprintf |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
140 # define GNULIB_overrides_fprintf 1 |
9262 | 141 extern int fprintf (FILE *fp, const char *format, ...) |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
142 __attribute__ ((__format__ (__printf__, 2, 3))) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
143 _GL_ARG_NONNULL ((1, 2)); |
9262 | 144 # endif |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
145 #endif |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
146 #if !@GNULIB_FPRINTF_POSIX@ && defined GNULIB_POSIXCHECK |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
147 # if !GNULIB_overrides_fprintf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
148 # undef fprintf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
149 # endif |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
150 /* Assume fprintf is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
151 _GL_WARN_ON_USE (fprintf, "fprintf is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
152 "use gnulib module fprintf-posix for portable " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
153 "POSIX compliance"); |
9262 | 154 #endif |
155 | |
11971 | 156 #if @GNULIB_FPURGE@ |
157 # if @REPLACE_FPURGE@ | |
158 # define fpurge rpl_fpurge | |
9262 | 159 # endif |
11971 | 160 # if @REPLACE_FPURGE@ || !@HAVE_DECL_FPURGE@ |
161 /* Discard all pending buffered I/O data on STREAM. | |
162 STREAM must not be wide-character oriented. | |
163 When discarding pending output, the file position is set back to where it | |
164 was before the write calls. When discarding pending input, the file | |
165 position is advanced to match the end of the previously read input. | |
166 Return 0 if successful. Upon error, return -1 and set errno. */ | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
167 extern int fpurge (FILE *gl_stream) _GL_ARG_NONNULL ((1)); |
9262 | 168 # endif |
169 #elif defined GNULIB_POSIXCHECK | |
11971 | 170 # undef fpurge |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
171 # if HAVE_RAW_DECL_FPURGE |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
172 _GL_WARN_ON_USE (fpurge, "fpurge is not always present - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
173 "use gnulib module fpurge for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
174 # endif |
11035
bf21f4597784
New modules 'dprintf', 'dprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
11033
diff
changeset
|
175 #endif |
bf21f4597784
New modules 'dprintf', 'dprintf-posix'.
Bruno Haible <bruno@clisp.org>
parents:
11033
diff
changeset
|
176 |
11971 | 177 #if @GNULIB_FPUTC@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@ |
178 # undef fputc | |
179 # define fputc rpl_fputc | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
180 extern int fputc (int c, FILE *stream) _GL_ARG_NONNULL ((2)); |
9262 | 181 #endif |
182 | |
11971 | 183 #if @GNULIB_FPUTS@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@ |
184 # undef fputs | |
185 # define fputs rpl_fputs | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
186 extern int fputs (const char *string, FILE *stream) _GL_ARG_NONNULL ((1, 2)); |
9301
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
187 #endif |
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
188 |
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
189 #if @GNULIB_FREOPEN@ |
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
190 # if @REPLACE_FREOPEN@ |
10528
97cab1215a7c
Tweak patch that overrides open() and fopen().
Bruno Haible <bruno@clisp.org>
parents:
10487
diff
changeset
|
191 # undef freopen |
9301
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
192 # define freopen rpl_freopen |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
193 extern FILE * freopen (const char *filename, const char *mode, FILE *stream) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
194 _GL_ARG_NONNULL ((2, 3)); |
9301
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
195 # endif |
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
196 #elif defined GNULIB_POSIXCHECK |
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
197 # undef freopen |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
198 /* Assume freopen is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
199 _GL_WARN_ON_USE (freopen, "freopen on Win32 platforms is not POSIX compatible - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
200 "use gnulib module freopen for portability"); |
9301
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
201 #endif |
98e1721b4e40
New modules 'fopen' and 'freopen'.
Bruno Haible <bruno@clisp.org>
parents:
9262
diff
changeset
|
202 |
12878 | 203 |
12724 | 204 /* Set up the following warnings, based on which modules are in use. |
205 GNU Coding Standards discourage the use of fseek, since it imposes | |
206 an arbitrary limitation on some 32-bit hosts. Remember that the | |
207 fseek module depends on the fseeko module, so we only have three | |
208 cases to consider: | |
209 | |
210 1. The developer is not using either module. Issue a warning under | |
211 GNULIB_POSIXCHECK for both functions, to remind them that both | |
212 functions have bugs on some systems. _GL_NO_LARGE_FILES has no | |
213 impact on this warning. | |
214 | |
215 2. The developer is using both modules. They may be unaware of the | |
216 arbitrary limitations of fseek, so issue a warning under | |
217 GNULIB_POSIXCHECK. On the other hand, they may be using both | |
218 modules intentionally, so the developer can define | |
219 _GL_NO_LARGE_FILES in the compilation units where the use of fseek | |
220 is safe, to silence the warning. | |
221 | |
222 3. The developer is using the fseeko module, but not fseek. Gnulib | |
223 guarantees that fseek will still work around platform bugs in that | |
224 case, but we presume that the developer is aware of the pitfalls of | |
225 fseek and was trying to avoid it, so issue a warning even when | |
226 GNULIB_POSIXCHECK is undefined. Again, _GL_NO_LARGE_FILES can be | |
227 defined to silence the warning in particular compilation units. | |
228 | |
229 Most gnulib clients that perform stream operations should fall into | |
12878 | 230 category 3. */ |
12724 | 231 |
232 #if @GNULIB_FSEEK@ | |
233 # if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES | |
234 # define _GL_FSEEK_WARN /* Category 2, above. */ | |
235 # undef fseek | |
236 # endif | |
237 # if @REPLACE_FSEEK@ | |
238 # undef fseek | |
9262 | 239 # define fseek rpl_fseek |
12724 | 240 extern int fseek (FILE *fp, long offset, int whence) _GL_ARG_NONNULL ((1)); |
9262 | 241 # endif |
242 #endif | |
243 | |
11971 | 244 #if @GNULIB_FSEEKO@ |
12724 | 245 # if !@GNULIB_FSEEK@ && !defined _GL_NO_LARGE_FILES |
246 # define _GL_FSEEK_WARN /* Category 3, above. */ | |
247 # undef fseek | |
248 # endif | |
11971 | 249 # if @REPLACE_FSEEKO@ |
250 /* Provide fseek, fseeko functions that are aware of a preceding | |
251 fflush(), and which detect pipes. */ | |
12724 | 252 # undef fseeko |
11971 | 253 # define fseeko rpl_fseeko |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
254 extern int fseeko (FILE *fp, off_t offset, int whence) _GL_ARG_NONNULL ((1)); |
12202
a0f033ee41af
fseek: avoid compilation failure when fflush is replaced
Eric Blake <ebb9@byu.net>
parents:
12100
diff
changeset
|
255 # if !@GNULIB_FSEEK@ |
a0f033ee41af
fseek: avoid compilation failure when fflush is replaced
Eric Blake <ebb9@byu.net>
parents:
12100
diff
changeset
|
256 # undef fseek |
12724 | 257 # define fseek rpl_fseek |
258 static inline int _GL_ARG_NONNULL ((1)) | |
259 rpl_fseek (FILE *fp, long offset, int whence) | |
260 { | |
261 return fseeko (fp, offset, whence); | |
262 } | |
12202
a0f033ee41af
fseek: avoid compilation failure when fflush is replaced
Eric Blake <ebb9@byu.net>
parents:
12100
diff
changeset
|
263 # endif |
9262 | 264 # endif |
265 #elif defined GNULIB_POSIXCHECK | |
12724 | 266 # define _GL_FSEEK_WARN /* Category 1, above. */ |
267 # undef fseek | |
11971 | 268 # undef fseeko |
12724 | 269 # if HAVE_RAW_DECL_FSEEKO |
270 _GL_WARN_ON_USE (fseeko, "fseeko is unportable - " | |
271 "use gnulib module fseeko for portability"); | |
272 # endif | |
9262 | 273 #endif |
274 | |
12724 | 275 #ifdef _GL_FSEEK_WARN |
276 # undef _GL_FSEEK_WARN | |
277 /* Here, either fseek is undefined (but C89 guarantees that it is | |
278 declared), or it is defined as rpl_fseek (declared above). */ | |
279 _GL_WARN_ON_USE (fseek, "fseek cannot handle files larger than 4 GB " | |
280 "on 32-bit platforms - " | |
281 "use fseeko function for handling of large files"); | |
282 #endif | |
283 | |
12878 | 284 |
285 /* ftell, ftello. See the comments on fseek/fseeko. */ | |
12724 | 286 |
287 #if @GNULIB_FTELL@ | |
288 # if defined GNULIB_POSIXCHECK && !defined _GL_NO_LARGE_FILES | |
289 # define _GL_FTELL_WARN /* Category 2, above. */ | |
290 # undef ftell | |
291 # endif | |
12734
b31438706e9b
lib/stdio.in.h: Fix typo.
Simon Josefsson <simon@josefsson.org>
parents:
12724
diff
changeset
|
292 # if @REPLACE_FTELL@ |
12724 | 293 # undef ftell |
9262 | 294 # define ftell rpl_ftell |
12724 | 295 extern long ftell (FILE *fp) _GL_ARG_NONNULL ((1)); |
9262 | 296 # endif |
297 #endif | |
298 | |
11971 | 299 #if @GNULIB_FTELLO@ |
12724 | 300 # if !@GNULIB_FTELL@ && !defined _GL_NO_LARGE_FILES |
301 # define _GL_FTELL_WARN /* Category 3, above. */ | |
302 # undef ftell | |
303 # endif | |
11971 | 304 # if @REPLACE_FTELLO@ |
12724 | 305 # undef ftello |
11971 | 306 # define ftello rpl_ftello |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
307 extern off_t ftello (FILE *fp) _GL_ARG_NONNULL ((1)); |
12202
a0f033ee41af
fseek: avoid compilation failure when fflush is replaced
Eric Blake <ebb9@byu.net>
parents:
12100
diff
changeset
|
308 # if !@GNULIB_FTELL@ |
a0f033ee41af
fseek: avoid compilation failure when fflush is replaced
Eric Blake <ebb9@byu.net>
parents:
12100
diff
changeset
|
309 # undef ftell |
12724 | 310 # define ftell rpl_ftell |
311 static inline long _GL_ARG_NONNULL ((1)) | |
312 rpl_ftell (FILE *f) | |
313 { | |
314 return ftello (f); | |
315 } | |
12202
a0f033ee41af
fseek: avoid compilation failure when fflush is replaced
Eric Blake <ebb9@byu.net>
parents:
12100
diff
changeset
|
316 # endif |
11653 | 317 # endif |
318 #elif defined GNULIB_POSIXCHECK | |
12724 | 319 # define _GL_FTELL_WARN /* Category 1, above. */ |
320 # undef ftell | |
11971 | 321 # undef ftello |
12724 | 322 # if HAVE_RAW_DECL_FTELLO |
323 _GL_WARN_ON_USE (ftello, "ftello is unportable - " | |
324 "use gnulib module ftello for portability"); | |
325 # endif | |
326 #endif | |
327 | |
328 #ifdef _GL_FTELL_WARN | |
329 # undef _GL_FTELL_WARN | |
330 /* Here, either ftell is undefined (but C89 guarantees that it is | |
331 declared), or it is defined as rpl_ftell (declared above). */ | |
332 _GL_WARN_ON_USE (ftell, "ftell cannot handle files larger than 4 GB " | |
333 "on 32-bit platforms - " | |
334 "use ftello function for handling of large files"); | |
10487
953f72c1ffcc
Support SIGPIPE in stdio functions for writing.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
335 #endif |
953f72c1ffcc
Support SIGPIPE in stdio functions for writing.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
336 |
12878 | 337 |
10487
953f72c1ffcc
Support SIGPIPE in stdio functions for writing.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
338 #if @GNULIB_FWRITE@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@ |
953f72c1ffcc
Support SIGPIPE in stdio functions for writing.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
339 # undef fwrite |
953f72c1ffcc
Support SIGPIPE in stdio functions for writing.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
340 # define fwrite rpl_fwrite |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
341 extern size_t fwrite (const void *ptr, size_t s, size_t n, FILE *stream) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
342 _GL_ARG_NONNULL ((1, 4)); |
10487
953f72c1ffcc
Support SIGPIPE in stdio functions for writing.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
343 #endif |
953f72c1ffcc
Support SIGPIPE in stdio functions for writing.
Bruno Haible <bruno@clisp.org>
parents:
10433
diff
changeset
|
344 |
9262 | 345 #if @GNULIB_GETDELIM@ |
12839
c6d23570567d
Work around getdelim() bug on FreeBSD 8.0.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
346 # if @REPLACE_GETDELIM@ |
c6d23570567d
Work around getdelim() bug on FreeBSD 8.0.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
347 # undef getdelim |
c6d23570567d
Work around getdelim() bug on FreeBSD 8.0.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
348 # define getdelim rpl_getdelim |
c6d23570567d
Work around getdelim() bug on FreeBSD 8.0.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
349 # endif |
c6d23570567d
Work around getdelim() bug on FreeBSD 8.0.
Bruno Haible <bruno@clisp.org>
parents:
12766
diff
changeset
|
350 # if !@HAVE_DECL_GETDELIM@ || @REPLACE_GETDELIM@ |
9262 | 351 /* Read input, up to (and including) the next occurrence of DELIMITER, from |
352 STREAM, store it in *LINEPTR (and NUL-terminate it). | |
353 *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE | |
354 bytes of space. It is realloc'd as necessary. | |
355 Return the number of bytes read and stored at *LINEPTR (not including the | |
356 NUL terminator), or -1 on error or EOF. */ | |
357 extern ssize_t getdelim (char **lineptr, size_t *linesize, int delimiter, | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
358 FILE *stream) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
359 _GL_ARG_NONNULL ((1, 2, 4)); |
9262 | 360 # endif |
361 #elif defined GNULIB_POSIXCHECK | |
362 # undef getdelim | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
363 # if HAVE_RAW_DECL_GETDELIM |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
364 _GL_WARN_ON_USE (getdelim, "getdelim is unportable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
365 "use gnulib module getdelim for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
366 # endif |
9262 | 367 #endif |
368 | |
369 #if @GNULIB_GETLINE@ | |
370 # if @REPLACE_GETLINE@ | |
371 # undef getline | |
372 # define getline rpl_getline | |
373 # endif | |
374 # if !@HAVE_DECL_GETLINE@ || @REPLACE_GETLINE@ | |
375 /* Read a line, up to (and including) the next newline, from STREAM, store it | |
376 in *LINEPTR (and NUL-terminate it). | |
377 *LINEPTR is a pointer returned from malloc (or NULL), pointing to *LINESIZE | |
378 bytes of space. It is realloc'd as necessary. | |
379 Return the number of bytes read and stored at *LINEPTR (not including the | |
380 NUL terminator), or -1 on error or EOF. */ | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
381 extern ssize_t getline (char **lineptr, size_t *linesize, FILE *stream) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
382 _GL_ARG_NONNULL ((1, 2, 3)); |
9262 | 383 # endif |
384 #elif defined GNULIB_POSIXCHECK | |
385 # undef getline | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
386 # if HAVE_RAW_DECL_GETLINE |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
387 _GL_WARN_ON_USE (getline, "getline is unportable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
388 "use gnulib module getline for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
389 # endif |
9262 | 390 #endif |
391 | |
12860
1825e6a0ff37
obstack-printf-posix: ensure declaration
Eric Blake <ebb9@byu.net>
parents:
12839
diff
changeset
|
392 #if @GNULIB_OBSTACK_PRINTF@ || @GNULIB_OBSTACK_PRINTF_POSIX@ |
11971 | 393 # if @REPLACE_OBSTACK_PRINTF@ |
394 # define obstack_printf rpl_osbtack_printf | |
395 # define obstack_vprintf rpl_obstack_vprintf | |
396 # endif | |
397 # if @REPLACE_OBSTACK_PRINTF@ || !@HAVE_DECL_OBSTACK_PRINTF@ | |
398 struct obstack; | |
399 /* Grow an obstack with formatted output. Return the number of | |
400 bytes added to OBS. No trailing nul byte is added, and the | |
401 object should be closed with obstack_finish before use. Upon | |
402 memory allocation error, call obstack_alloc_failed_handler. Upon | |
403 other error, return -1. */ | |
404 extern int obstack_printf (struct obstack *obs, const char *format, ...) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
405 __attribute__ ((__format__ (__printf__, 2, 3))) _GL_ARG_NONNULL ((1, 2)); |
11971 | 406 extern int obstack_vprintf (struct obstack *obs, const char *format, |
12421
e8d2c6fc33ad
Use spaces for indentation, not tabs.
Bruno Haible <bruno@clisp.org>
parents:
12418
diff
changeset
|
407 va_list args) |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
408 __attribute__ ((__format__ (__printf__, 2, 0))) _GL_ARG_NONNULL ((1, 2)); |
11971 | 409 # endif |
410 #endif | |
411 | |
10433 | 412 #if @GNULIB_PERROR@ |
413 # if @REPLACE_PERROR@ | |
414 # define perror rpl_perror | |
415 /* Print a message to standard error, describing the value of ERRNO, | |
416 (if STRING is not NULL and not empty) prefixed with STRING and ": ", | |
417 and terminated with a newline. */ | |
418 extern void perror (const char *string); | |
419 # endif | |
420 #elif defined GNULIB_POSIXCHECK | |
421 # undef perror | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
422 /* Assume perror is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
423 _GL_WARN_ON_USE (perror, "perror is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
424 "use gnulib module perror for portability"); |
10433 | 425 #endif |
426 | |
11971 | 427 #if @GNULIB_POPEN@ |
428 # if @REPLACE_POPEN@ | |
429 # undef popen | |
430 # define popen rpl_popen | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
431 extern FILE *popen (const char *cmd, const char *mode) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
432 _GL_ARG_NONNULL ((1, 2)); |
11971 | 433 # endif |
434 #elif defined GNULIB_POSIXCHECK | |
435 # undef popen | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
436 # if HAVE_RAW_DECL_POPEN |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
437 _GL_WARN_ON_USE (popen, "popen is buggy on some platforms - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
438 "use gnulib module popen or pipe for more portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
439 # endif |
11971 | 440 #endif |
441 | |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
442 #if @GNULIB_PRINTF_POSIX@ || @GNULIB_PRINTF@ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
443 # if (@GNULIB_PRINTF_POSIX@ && @REPLACE_PRINTF@) \ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
444 || (@GNULIB_PRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@) |
11971 | 445 /* Don't break __attribute__((format(printf,M,N))). */ |
446 # define printf __printf__ | |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
447 # define GNULIB_overrides_printf 1 |
11971 | 448 extern int printf (const char *format, ...) |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
449 __attribute__ ((__format__ (__printf__, 1, 2))) _GL_ARG_NONNULL ((1)); |
11971 | 450 # endif |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
451 #endif |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
452 #if !@GNULIB_PRINTF_POSIX@ && defined GNULIB_POSIXCHECK |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
453 # if !GNULIB_overrides_printf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
454 # undef printf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
455 # endif |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
456 /* Assume printf is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
457 _GL_WARN_ON_USE (printf, "printf is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
458 "use gnulib module printf-posix for portable " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
459 "POSIX compliance"); |
11971 | 460 #endif |
461 | |
462 #if @GNULIB_PUTC@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@ | |
463 # undef putc | |
464 # define putc rpl_fputc | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
465 extern int putc (int c, FILE *stream) _GL_ARG_NONNULL ((2)); |
11971 | 466 #endif |
467 | |
468 #if @GNULIB_PUTCHAR@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@ | |
469 # undef putchar | |
470 # define putchar rpl_putchar | |
471 extern int putchar (int c); | |
472 #endif | |
473 | |
474 #if @GNULIB_PUTS@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@ | |
475 # undef puts | |
476 # define puts rpl_puts | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
477 extern int puts (const char *string) _GL_ARG_NONNULL ((1)); |
11971 | 478 #endif |
479 | |
12041
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
480 #if @GNULIB_REMOVE@ |
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
481 # if @REPLACE_REMOVE@ |
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
482 # undef remove |
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
483 # define remove rpl_remove |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
484 extern int remove (const char *name) _GL_ARG_NONNULL ((1)); |
12041
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
485 # endif |
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
486 #elif defined GNULIB_POSIXCHECK |
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
487 # undef remove |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
488 /* Assume remove is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
489 _GL_WARN_ON_USE (remove, "remove cannot handle directories on some platforms - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
490 "use gnulib module remove for more portability"); |
12041
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
491 #endif |
73e9ab6e2c90
remove: new module, for mingw and Solaris 9 bugs
Eric Blake <ebb9@byu.net>
parents:
11972
diff
changeset
|
492 |
11972 | 493 #if @GNULIB_RENAME@ |
494 # if @REPLACE_RENAME@ | |
495 # undef rename | |
496 # define rename rpl_rename | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
497 extern int rename (const char *old_filename, const char *new_filename) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
498 _GL_ARG_NONNULL ((1, 2)); |
11972 | 499 # endif |
500 #elif defined GNULIB_POSIXCHECK | |
501 # undef rename | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
502 /* Assume rename is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
503 _GL_WARN_ON_USE (rename, "rename is buggy on some platforms - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
504 "use gnulib module rename for more portability"); |
11972 | 505 #endif |
506 | |
12099 | 507 #if @GNULIB_RENAMEAT@ |
12100 | 508 # if @REPLACE_RENAMEAT@ |
509 # undef renameat | |
510 # define renameat rpl_renameat | |
511 # endif | |
512 # if !@HAVE_RENAMEAT@ || @REPLACE_RENAMEAT@ | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
513 extern int renameat (int fd1, char const *file1, int fd2, char const *file2) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
514 _GL_ARG_NONNULL ((2, 4)); |
12099 | 515 # endif |
516 #elif defined GNULIB_POSIXCHECK | |
517 # undef renameat | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
518 # if HAVE_RAW_DECL_RENAMEAT |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
519 _GL_WARN_ON_USE (renameat, "renameat is not portable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
520 "use gnulib module renameat for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
521 # endif |
12099 | 522 #endif |
523 | |
11971 | 524 #if @GNULIB_SNPRINTF@ |
525 # if @REPLACE_SNPRINTF@ | |
526 # define snprintf rpl_snprintf | |
527 # endif | |
528 # if @REPLACE_SNPRINTF@ || !@HAVE_DECL_SNPRINTF@ | |
529 extern int snprintf (char *str, size_t size, const char *format, ...) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
530 __attribute__ ((__format__ (__printf__, 3, 4))) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
531 _GL_ARG_NONNULL ((3)); |
11971 | 532 # endif |
533 #elif defined GNULIB_POSIXCHECK | |
534 # undef snprintf | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
535 # if HAVE_RAW_DECL_SNPRINTF |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
536 _GL_WARN_ON_USE (snprintf, "snprintf is unportable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
537 "use gnulib module snprintf for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
538 # endif |
11971 | 539 #endif |
540 | |
12724 | 541 /* Some people would argue that sprintf should be handled like gets |
542 (for example, OpenBSD issues a link warning for both functions), | |
543 since both can cause security holes due to buffer overruns. | |
544 However, we believe that sprintf can be used safely, and is more | |
545 efficient than snprintf in those safe cases; and as proof of our | |
546 belief, we use sprintf in several gnulib modules. So this header | |
547 intentionally avoids adding a warning to sprintf except when | |
548 GNULIB_POSIXCHECK is defined. */ | |
549 | |
11971 | 550 #if @GNULIB_SPRINTF_POSIX@ |
551 # if @REPLACE_SPRINTF@ | |
552 # define sprintf rpl_sprintf | |
553 extern int sprintf (char *str, const char *format, ...) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
554 __attribute__ ((__format__ (__printf__, 2, 3))) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
555 _GL_ARG_NONNULL ((1, 2)); |
11971 | 556 # endif |
557 #elif defined GNULIB_POSIXCHECK | |
558 # undef sprintf | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
559 /* Assume sprintf is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
560 _GL_WARN_ON_USE (sprintf, "sprintf is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
561 "use gnulib module sprintf-posix for portable " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
562 "POSIX compliance"); |
11971 | 563 #endif |
564 | |
565 #if @GNULIB_VASPRINTF@ | |
566 # if @REPLACE_VASPRINTF@ | |
567 # define asprintf rpl_asprintf | |
568 # define vasprintf rpl_vasprintf | |
569 # endif | |
570 # if @REPLACE_VASPRINTF@ || !@HAVE_VASPRINTF@ | |
571 /* Write formatted output to a string dynamically allocated with malloc(). | |
572 If the memory allocation succeeds, store the address of the string in | |
573 *RESULT and return the number of resulting bytes, excluding the trailing | |
574 NUL. Upon memory allocation error, or some other error, return -1. */ | |
575 extern int asprintf (char **result, const char *format, ...) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
576 __attribute__ ((__format__ (__printf__, 2, 3))) _GL_ARG_NONNULL ((1, 2)); |
11971 | 577 extern int vasprintf (char **result, const char *format, va_list args) |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
578 __attribute__ ((__format__ (__printf__, 2, 0))) _GL_ARG_NONNULL ((1, 2)); |
11971 | 579 # endif |
580 #endif | |
581 | |
582 #if @GNULIB_VDPRINTF@ | |
583 # if @REPLACE_VDPRINTF@ | |
584 # define vdprintf rpl_vdprintf | |
585 # endif | |
586 # if @REPLACE_VDPRINTF@ || !@HAVE_VDPRINTF@ | |
587 extern int vdprintf (int fd, const char *format, va_list args) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
588 __attribute__ ((__format__ (__printf__, 2, 0))) _GL_ARG_NONNULL ((2)); |
11971 | 589 # endif |
590 #elif defined GNULIB_POSIXCHECK | |
591 # undef vdprintf | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
592 # if HAVE_RAW_DECL_VDPRINTF |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
593 _GL_WARN_ON_USE (vdprintf, "vdprintf is unportable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
594 "use gnulib module vdprintf for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
595 # endif |
11971 | 596 #endif |
597 | |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
598 #if @GNULIB_VFPRINTF_POSIX@ || @GNULIB_VFPRINTF@ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
599 # if (@GNULIB_VFPRINTF_POSIX@ && @REPLACE_VFPRINTF@) \ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
600 || (@GNULIB_VFPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@) |
11971 | 601 # define vfprintf rpl_vfprintf |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
602 # define GNULIB_overrides_vfprintf 1 |
11971 | 603 extern int vfprintf (FILE *fp, const char *format, va_list args) |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
604 __attribute__ ((__format__ (__printf__, 2, 0))) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
605 _GL_ARG_NONNULL ((1, 2)); |
11971 | 606 # endif |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
607 #endif |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
608 #if !@GNULIB_VFPRINTF_POSIX@ && defined GNULIB_POSIXCHECK |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
609 # if !GNULIB_overrides_vfprintf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
610 # undef vfprintf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
611 # endif |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
612 /* Assume vfprintf is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
613 _GL_WARN_ON_USE (vfprintf, "vfprintf is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
614 "use gnulib module vfprintf-posix for portable " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
615 "POSIX compliance"); |
11971 | 616 #endif |
617 | |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
618 #if @GNULIB_VPRINTF_POSIX@ || @GNULIB_VPRINTF@ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
619 # if (@GNULIB_VPRINTF_POSIX@ && @REPLACE_VPRINTF@) \ |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
620 || (@GNULIB_VPRINTF@ && @REPLACE_STDIO_WRITE_FUNCS@ && @GNULIB_STDIO_H_SIGPIPE@) |
11971 | 621 # define vprintf rpl_vprintf |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
622 # define GNULIB_overrides_vprintf 1 |
11971 | 623 extern int vprintf (const char *format, va_list args) |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
624 __attribute__ ((__format__ (__printf__, 1, 0))) _GL_ARG_NONNULL ((1)); |
11971 | 625 # endif |
12879
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
626 #endif |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
627 #if !@GNULIB_VPRINTF_POSIX@ && defined GNULIB_POSIXCHECK |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
628 # if !GNULIB_overrides_vprintf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
629 # undef vprintf |
037f6bf7ec72
Improve *printf warning condition.
Bruno Haible <bruno@clisp.org>
parents:
12878
diff
changeset
|
630 # endif |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
631 /* Assume vprintf is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
632 _GL_WARN_ON_USE (vprintf, "vprintf is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
633 "use gnulib module vprintf-posix for portable " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
634 "POSIX compliance"); |
11971 | 635 #endif |
636 | |
637 #if @GNULIB_VSNPRINTF@ | |
638 # if @REPLACE_VSNPRINTF@ | |
639 # define vsnprintf rpl_vsnprintf | |
640 # endif | |
641 # if @REPLACE_VSNPRINTF@ || !@HAVE_DECL_VSNPRINTF@ | |
642 extern int vsnprintf (char *str, size_t size, const char *format, va_list args) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
643 __attribute__ ((__format__ (__printf__, 3, 0))) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
644 _GL_ARG_NONNULL ((3)); |
11971 | 645 # endif |
646 #elif defined GNULIB_POSIXCHECK | |
647 # undef vsnprintf | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
648 # if HAVE_RAW_DECL_VSNPRINTF |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
649 _GL_WARN_ON_USE (vsnprintf, "vsnprintf is unportable - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
650 "use gnulib module vsnprintf for portability"); |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
651 # endif |
11971 | 652 #endif |
653 | |
654 #if @GNULIB_VSPRINTF_POSIX@ | |
655 # if @REPLACE_VSPRINTF@ | |
656 # define vsprintf rpl_vsprintf | |
657 extern int vsprintf (char *str, const char *format, va_list args) | |
12422
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
658 __attribute__ ((__format__ (__printf__, 2, 0))) |
f7842310a565
New module 'arg-nonnull'. Declare which arguments expect non-NULL values.
Bruno Haible <bruno@clisp.org>
parents:
12421
diff
changeset
|
659 _GL_ARG_NONNULL ((1, 2)); |
11971 | 660 # endif |
661 #elif defined GNULIB_POSIXCHECK | |
662 # undef vsprintf | |
12766
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
663 /* Assume vsprintf is always declared. */ |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
664 _GL_WARN_ON_USE (vsprintf, "vsprintf is not always POSIX compliant - " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
665 "use gnulib module vsprintf-posix for portable " |
2c14f1e449e5
warn-on-use: use instead of link-warning
Eric Blake <ebb9@byu.net>
parents:
12762
diff
changeset
|
666 "POSIX compliance"); |
11971 | 667 #endif |
668 | |
9262 | 669 #ifdef __cplusplus |
670 } | |
671 #endif | |
672 | |
673 #endif /* _GL_STDIO_H */ | |
674 #endif /* _GL_STDIO_H */ | |
675 #endif |