diff options
author | Stig Bakken <ssb@php.net> | 1999-06-16 17:06:53 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-06-16 17:06:53 +0000 |
commit | 117a2fba0719f071678d172031388a2707041141 (patch) | |
tree | 4957e176e6bd4500aa010d775f69a06441501d76 /win32 | |
parent | 5d4579a1f4093654441894ed0e384159f2340ef9 (diff) | |
download | php-git-117a2fba0719f071678d172031388a2707041141.tar.gz |
* fixed some #if/#ifdef issues
* hand-patched in php3 changes from 3.0.6 to HEAD in these files:
fopen-wrappers.[ch] ext/standard/file.[ch] ext/standard/fsock.[ch]
ext/standard/php3_string.h ext/standard/string.c
* added some new file/socket macros for more readable code:
FP_FGETS(buf,len,sock,fp,issock)
FP_FREAD(buf,len,sock,fp,issock)
FP_FEOF(sock,fp,issock)
FP_FGETC(sock,fp,issock)
Diffstat (limited to 'win32')
-rw-r--r-- | win32/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/time.c b/win32/time.c index ea0e2d1acb..c1089283e3 100644 --- a/win32/time.c +++ b/win32/time.c @@ -70,7 +70,7 @@ void usleep(unsigned int useconds) } -#if HAVE_SETITIMER +#ifdef HAVE_SETITIMER #ifndef THREAD_SAFE |