diff options
author | Robin Barker <RMBarker@cpan.org> | 2003-05-23 18:32:22 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-23 16:51:18 +0000 |
commit | 287c8091529321306208d03ea400ad532aea56f5 (patch) | |
tree | 65ac76361bd83808bb266dd98bb9d4c9b0c3f9df /perlio.h | |
parent | fb207d526ce4bce3776385fc87bb41c535edcb76 (diff) | |
download | perl-287c8091529321306208d03ea400ad532aea56f5.tar.gz |
RE: [PATCH] RE: maint snapshot @ 19525
Message-ID: <533D273D4014D411AB1D00062938C4D90404653C@hotel.npl.co.uk>
p4raw-id: //depot/perl@19599
Diffstat (limited to 'perlio.h')
-rw-r--r-- | perlio.h | 15 |
1 files changed, 3 insertions, 12 deletions
@@ -208,10 +208,7 @@ extern void PerlIO_init(pTHX); #endif #ifndef PerlIO_stdoutf extern int PerlIO_stdoutf(const char *, ...) -#ifdef CHECK_FORMAT - __attribute__ ((__format__(__printf__, 1, 2))) -#endif -; + __attribute__format__(__printf__, 1, 2); #endif #ifndef PerlIO_puts extern int PerlIO_puts(PerlIO *, const char *); @@ -271,17 +268,11 @@ extern void PerlIO_setlinebuf(PerlIO *); #endif #ifndef PerlIO_printf extern int PerlIO_printf(PerlIO *, const char *, ...) -#ifdef CHECK_FORMAT - __attribute__ ((__format__(__printf__, 2, 3))) -#endif -; + __attribute__format__(__printf__, 2, 3); #endif #ifndef PerlIO_sprintf extern int PerlIO_sprintf(char *, int, const char *, ...) -#ifdef CHECK_FORMAT - __attribute__ ((__format__(__printf__, 3, 4))) -#endif -; + __attribute__format__(__printf__, 3, 4); #endif #ifndef PerlIO_vprintf extern int PerlIO_vprintf(PerlIO *, const char *, va_list); |