From: Frank M. Kromann Date: Tue, 6 Jun 2000 18:30:06 +0000 (+0000) Subject: adding definition for EWOULDBLOCK for Win32 to compile X-Git-Tag: PRE_EIGHT_BYTE_ALLOC_PATCH~69 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a14261bc42f9f93d6a50731415bb5544708edef7;p=php adding definition for EWOULDBLOCK for Win32 to compile --- diff --git a/ext/standard/flock_compat.h b/ext/standard/flock_compat.h index 4308c08d9d..a94be11091 100644 --- a/ext/standard/flock_compat.h +++ b/ext/standard/flock_compat.h @@ -10,6 +10,7 @@ int flock(int fd, int operation); #endif #ifdef PHP_WIN32 +#define EWOULDBLOCK WSAEWOULDBLOCK # define fsync _commit # define ftruncate(a,b) chsize(a,b) #endif /* defined(PHP_WIN32) */