Yang Tse: fixes the use of Curl_inet_ntop and Curl_inet_pton with no

prototypes on some platforms, ie IRIX 6.2 MIPS C 6.2
This commit is contained in:
Daniel Stenberg 2005-11-25 22:20:02 +00:00
parent fec632e948
commit 01cbf08064
2 changed files with 6 additions and 6 deletions

View file

@ -25,13 +25,13 @@
#include "setup.h"
char *Curl_inet_ntop(int af, const void *addr, char *buf, size_t size);
#ifdef HAVE_INET_NTOP
#define Curl_inet_ntop(af,addr,buf,size) inet_ntop(af,addr,buf,size)
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#else
char *Curl_inet_ntop(int af, const void *addr, char *buf, size_t size);
#define Curl_inet_ntop(af,addr,buf,size) inet_ntop(af,addr,buf,size)
#endif
#endif /* __INET_NTOP_H */