aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-07-30 08:54:43 +0000
committervapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-07-30 08:54:43 +0000
commitc8d7edf42cd7a71c88d9c4dbf431a52a1617af29 (patch)
tree3c519eaed63593522fa13686df640d2b9a37f2cb
parenta71be3be0df96531ec2b9bf98626c5e2a56e3d87 (diff)
downloadbusybox-w32-c8d7edf42cd7a71c88d9c4dbf431a52a1617af29.tar.gz
busybox-w32-c8d7edf42cd7a71c88d9c4dbf431a52a1617af29.tar.bz2
busybox-w32-c8d7edf42cd7a71c88d9c4dbf431a52a1617af29.zip
in order to make sure the INET6 prototypes are exported, we would have to include the libbb.h header file ... but then we have to worry about including too early/etc...
since simply defining the prototype in an internal header file doesnt hurt anyone, lets not worry about the header file crap and just always prototype the inet6 functions git-svn-id: svn://busybox.net/trunk/busybox@10977 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--include/inet_common.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/inet_common.h b/include/inet_common.h
index 4a9c3a2d7..afea5deaa 100644
--- a/include/inet_common.h
+++ b/include/inet_common.h
@@ -29,7 +29,5 @@ extern int INET_resolve(const char *name, struct sockaddr_in *s_in, int hostfirs
29extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in, 29extern int INET_rresolve(char *name, size_t len, struct sockaddr_in *s_in,
30 int numeric, unsigned int netmask); 30 int numeric, unsigned int netmask);
31 31
32#ifdef CONFIG_FEATURE_IPV6
33extern int INET6_resolve(const char *name, struct sockaddr_in6 *sin6); 32extern int INET6_resolve(const char *name, struct sockaddr_in6 *sin6);
34extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric); 33extern int INET6_rresolve(char *name, size_t len, struct sockaddr_in6 *sin6, int numeric);
35#endif