summaryrefslogtreecommitdiff
path: root/iperlsys.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-12-28 18:40:19 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-12-28 18:40:19 +0000
commit5db1039675bdeda8d9e4e8a1462abefb8ede0419 (patch)
tree7c515c7e6015a6511561b5fe09ec25d580a66ac4 /iperlsys.h
parent33079e286d5308155d46cf4f82350ddbb5b5ad95 (diff)
downloadperl-5db1039675bdeda8d9e4e8a1462abefb8ede0419.tar.gz
Win9x + GCC update from Benjamin Stuhl <sho_pi@hotmail.com>
p4raw-id: //depot/perl@4729
Diffstat (limited to 'iperlsys.h')
-rw-r--r--iperlsys.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/iperlsys.h b/iperlsys.h
index 0d9f699513..7b20d5dd5b 100644
--- a/iperlsys.h
+++ b/iperlsys.h
@@ -344,7 +344,7 @@ struct _PerlIO;
#ifndef PerlIO_stdoutf
extern int PerlIO_stdoutf (const char *,...)
- __attribute__((format (printf, 1, 2)));
+ __attribute__((__format__ (__printf__, 1, 2)));
#endif
#ifndef PerlIO_puts
extern int PerlIO_puts (PerlIO *,const char *);
@@ -405,11 +405,11 @@ extern void PerlIO_setlinebuf (PerlIO *);
#endif
#ifndef PerlIO_printf
extern int PerlIO_printf (PerlIO *, const char *,...)
- __attribute__((format (printf, 2, 3)));
+ __attribute__((__format__ (__printf__, 2, 3)));
#endif
#ifndef PerlIO_sprintf
extern int PerlIO_sprintf (char *, int, const char *,...)
- __attribute__((format (printf, 3, 4)));
+ __attribute__((__format__ (__printf__, 3, 4)));
#endif
#ifndef PerlIO_vprintf
extern int PerlIO_vprintf (PerlIO *, const char *, va_list);