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 | |
parent | c658fda90cbfa7f500b7be4479ba1ccd8781566d (diff) | |
download | perl-b79c357a0c9c7ce8cc63f8054dca48fefcb408f8.tar.gz |
Attribute compilation fix for Windows by Andy Lester
p4raw-id: //depot/perl@24552
-rw-r--r-- | perl.h | 6 | ||||
-rw-r--r-- | perlio.h | 6 |
2 files changed, 10 insertions, 2 deletions
@@ -199,7 +199,11 @@ #endif #ifndef PERL_UNUSED_DECL -# define PERL_UNUSED_DECL __attribute__unused__ +# ifdef HASATTRIBUTE_UNUSED +# define PERL_UNUSED_DECL __attribute__unused__ +# else +# define PERL_UNUSED_DECL +# endif #endif /* gcc -Wall: @@ -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); |