diff options
author | Zeev Suraski <zeev@php.net> | 1999-08-02 19:59:04 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-08-02 19:59:04 +0000 |
commit | dcf9114329fdd267aa822d5ea2c30667ae7232a3 (patch) | |
tree | a348d84223d3ab7f1cb382ed9f955bef5856ba63 /ext/standard/fsock.c | |
parent | 30569aac451d23ea5c66ac038ed33c527d56bd82 (diff) | |
download | php-git-dcf9114329fdd267aa822d5ea2c30667ae7232a3.tar.gz |
AIX needs this include...
Diffstat (limited to 'ext/standard/fsock.c')
-rw-r--r-- | ext/standard/fsock.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/standard/fsock.c b/ext/standard/fsock.c index 05401f5f34..c23ae5eef9 100644 --- a/ext/standard/fsock.c +++ b/ext/standard/fsock.c @@ -55,6 +55,9 @@ #if defined(AF_UNIX) #include <sys/un.h> #endif +#ifdef HAVE_SYS_SELECT_H +#include <sys/select.h> +#endif #include <string.h> #include <errno.h> |