Commit 01cbf080 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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
parent fec632e9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 */
+3 −3
Original line number Diff line number Diff line
@@ -25,13 +25,13 @@

#include "setup.h"

int Curl_inet_pton(int, const char *, void *);

#ifdef HAVE_INET_PTON
#define Curl_inet_pton(x,y,z) inet_pton(x,y,z)
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#else
int Curl_inet_pton(int, const char *, void *);
#define Curl_inet_pton(x,y,z) inet_pton(x,y,z)
#endif

#endif /* __INET_PTON_H */