diff options
Diffstat (limited to 'win32/inet.c')
-rw-r--r-- | win32/inet.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/win32/inet.c b/win32/inet.c index b794bcaeb4..02d00ca474 100644 --- a/win32/inet.c +++ b/win32/inet.c @@ -1,5 +1,5 @@ #include "config.w32.h" -#if (_WIN32_WINNT < 0x0600) /* Vista/2k8 have these functions */ +#if (_WIN32_WINNT < 0x0600) /* Vita/2k8 have these functions */ #include "php.h" #include <winsock2.h> #include <windows.h> @@ -7,7 +7,8 @@ #include "inet.h" -PHPAPI int inet_pton(int af, const char* src, void* dst) +PHPAPI int +inet_pton(int af, const char* src, void* dst) { int address_length; struct sockaddr_storage sa; |