Remove const-ness in inet_pton declaration.

This commit is contained in:
Martin v. Löwis 2001-06-25 06:38:03 +00:00
parent 2b110f9713
commit 51777ce758

View File

@ -217,7 +217,7 @@ Socket methods:
#ifndef MS_WINDOWS
#ifndef HAVE_INET_PTON
int inet_pton (int af, const char *src, void *dst);
int inet_pton (int af, char *src, void *dst);
char *inet_ntop(int af, void *src, char *dst, socklen_t size);
#endif