1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00

Declare inet_aton properly, if the system lacks support for it.

PR: #9382
This commit is contained in:
Sascha Schumann
2001-02-24 21:14:18 +00:00
parent a40ee1f181
commit cb1a89cb64

View File

@@ -39,7 +39,9 @@
#if HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#else
#endif
#ifndef HAVE_INET_ATON
int inet_aton(const char *, struct in_addr *);
#endif