Sync header with source code
authorYang Tse <yangsita@gmail.com>
Wed, 26 Jul 2006 10:33:17 +0000 (10:33 +0000)
committerYang Tse <yangsita@gmail.com>
Wed, 26 Jul 2006 10:33:17 +0000 (10:33 +0000)
ares/inet_ntop.h

index f9a1d92f7b9258c226053ee90173c8c6b4b46e85..aaafbbdb888962d7fb33ec8338e6c59e458747c7 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef __ARES_INET_NTOP_H
+#define __ARES_INET_NTOP_H
+
 /* $Id$ */
 
 /*
  * without express or implied warranty.
  */
 
-#ifndef INET_NTOP_H
-#define INET_NTOP_H
-
-#ifdef HAVE_INET_NTOP
+#if defined(HAVE_INET_NTOP) && defined(HAVE_INET_NTOP_IPV6)
 #define ares_inet_ntop(w,x,y,z) inet_ntop(w,x,y,z)
 #else
 const char *ares_inet_ntop(int af, const void *src, char *dst, size_t size);
 #endif
 
-#endif /* INET_NET_NTOP_H */
+#endif /* __ARES_INET_NTOP_H */