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 /perl.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 'perl.h')
-rw-r--r-- | perl.h | 6 |
1 files changed, 5 insertions, 1 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: |