diff options
author | Zeev Suraski <zeev@php.net> | 2000-04-13 16:08:49 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-04-13 16:08:49 +0000 |
commit | aa6769dde2646adc61c31f7d73e6274aac0f72bb (patch) | |
tree | 563ed0839f1b54e77246ca51270876e32f054d8c /ext/standard | |
parent | c6c261e922131b1249757fa5c142d2659b743996 (diff) | |
download | php-git-aa6769dde2646adc61c31f7d73e6274aac0f72bb.tar.gz |
- Make Windows builds build again
- Make non-gcc based platforms compile again
Diffstat (limited to 'ext/standard')
-rw-r--r-- | ext/standard/strnatcmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/strnatcmp.c b/ext/standard/strnatcmp.c index 2db6d94faa..2629f29c1b 100644 --- a/ext/standard/strnatcmp.c +++ b/ext/standard/strnatcmp.c @@ -32,6 +32,8 @@ #if defined(__GNUC__) # define UNUSED __attribute__((__unused__)) +#else +# define UNUSED #endif static char const *version UNUSED = |