diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-23 14:31:33 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-05-23 14:31:33 +0000 |
commit | b79c357a0c9c7ce8cc63f8054dca48fefcb408f8 (patch) | |
tree | 96114912a1bacdf778484dc532ee204a1e86afc1 /perlio.h | |
parent | c658fda90cbfa7f500b7be4479ba1ccd8781566d (diff) | |
download | perl-b79c357a0c9c7ce8cc63f8054dca48fefcb408f8.tar.gz |
Attribute compilation fix for Windows by Andy Lester
p4raw-id: //depot/perl@24552
Diffstat (limited to 'perlio.h')
-rw-r--r-- | perlio.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -210,7 +210,11 @@ PERL_EXPORT_C void PerlIO_clone(pTHX_ PerlInterpreter *proto, START_EXTERN_C #ifndef __attribute__format__ -# define __attribute__format__(x,y,z) __attribute__((format(x,y,z))) +# ifdef HASATTRIBUTE_FORMAT +# define __attribute__format__(x,y,z) __attribute__((format(x,y,z))) +# else +# define __attribute__format__(x,y,z) +# endif #endif #ifndef PerlIO_init PERL_EXPORT_C void PerlIO_init(pTHX); |