diff options
author | Andi Gutmans <andi@php.net> | 2000-06-15 23:45:05 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-06-15 23:45:05 +0000 |
commit | 2987d5216ed33e2701a52a5a02f6594ba405564a (patch) | |
tree | 2e49b4826cc96d30cc7c82df6361acdc2bb18617 /ext/pdf | |
parent | 17ce56825dfe218d3920bce3bb33807b46880014 (diff) | |
download | php-git-2987d5216ed33e2701a52a5a02f6594ba405564a.tar.gz |
- More #if WIN32|WINNT -> #ifdef PHP_WIN32 conversions
Diffstat (limited to 'ext/pdf')
-rw-r--r-- | ext/pdf/pdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdf/pdf.c b/ext/pdf/pdf.c index d461b1d68b..9210e9a3fa 100644 --- a/ext/pdf/pdf.c +++ b/ext/pdf/pdf.c @@ -52,7 +52,7 @@ #ifdef HAVE_UNISTD_H # include <unistd.h> #endif -#if WIN32|WINNT +#ifdef PHP_WIN32 # include <io.h> # include <fcntl.h> #endif |