diff options
author | Yang Tse <yangsita@gmail.com> | 2006-07-26 10:43:15 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-07-26 10:43:15 +0000 |
commit | d15ed439ae9052bb659ff6b0231ad1000dd8e0f1 (patch) | |
tree | d680c6daac3750fff42fc1bf34e332ccafc817ac /ares | |
parent | b765e1f3b7f0c6932f7f0a61c6272caf10700385 (diff) |
Change multiple header inclusion prevention definition to __ARES_INET_NET_PTON_H
Diffstat (limited to 'ares')
-rw-r--r-- | ares/inet_net_pton.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ares/inet_net_pton.h b/ares/inet_net_pton.h index 070a24f70..f3fc609a9 100644 --- a/ares/inet_net_pton.h +++ b/ares/inet_net_pton.h @@ -1,3 +1,6 @@ +#ifndef __ARES_INET_NET_PTON_H +#define __ARES_INET_NET_PTON_H + /* $Id$ */ /* @@ -14,9 +17,6 @@ * without express or implied warranty. */ -#ifndef INET_NET_PTON_H -#define INET_NET_PTON_H - #if defined(HAVE_INET_PTON) && defined(HAVE_INET_PTON_IPV6) #define ares_inet_pton(x,y,z) inet_pton(x,y,z) #else @@ -28,4 +28,4 @@ int ares_inet_pton(int af, const char *src, void *dst); int ares_inet_net_pton(int af, const char *src, void *dst, size_t size); #endif -#endif /* INET_NET_PTON_H */ +#endif /* __ARES_INET_NET_PTON_H */ |