diff options
author | Daniel Beulshausen <dbeu@php.net> | 2001-11-01 16:51:59 +0000 |
---|---|---|
committer | Daniel Beulshausen <dbeu@php.net> | 2001-11-01 16:51:59 +0000 |
commit | 2fba0362020fcbf73e37e5c7b79a04da8e3dc418 (patch) | |
tree | 572803a0965f7ab812790bd84cc72b04c6f13f1b /ext/sockets/php_sockets_win.h | |
parent | fa15d6069cd5f5cd4e60175af72efb9601708969 (diff) | |
download | php-git-2fba0362020fcbf73e37e5c7b79a04da8e3dc418.tar.gz |
- convert to use new zend_parse_parameters API
- unify errormessages + add socket_last_error()
- fix linklibrary under windows
- some streamlining
Diffstat (limited to 'ext/sockets/php_sockets_win.h')
-rw-r--r-- | ext/sockets/php_sockets_win.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sockets/php_sockets_win.h b/ext/sockets/php_sockets_win.h index 89f2426960..0d855c7e5d 100644 --- a/ext/sockets/php_sockets_win.h +++ b/ext/sockets/php_sockets_win.h @@ -77,6 +77,6 @@ ssize_t recvmsg(SOCKET sock, struct msghdr *msg, int flags); ssize_t sendmsg(SOCKET sock, struct msghdr *msg, int flags); int socketpair(int domain, int type, int protocol, SOCKET sock[2]); int inet_aton(const char *cp, struct in_addr *inp); -int fcntl(int fd, int cmd, ...); +int fcntl(int fd, int cmd, ...); #endif |