aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-01-12 11:20:22 -0800
committerAlon Zakai <alonzakai@gmail.com>2012-01-12 11:20:22 -0800
commitaa5dfee7c6cef6bd51ab93e94a3590b7a4d590a6 (patch)
treed9104ea9ca24f13c415d92f5b205ad9727bbd06a
parent3682e4b3b4b12dbe3b7f667b4d8a7fcb45f5965a (diff)
some inet.h additions
-rw-r--r--system/include/net/arpa/inet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/system/include/net/arpa/inet.h b/system/include/net/arpa/inet.h
index af7845fd..93223d32 100644
--- a/system/include/net/arpa/inet.h
+++ b/system/include/net/arpa/inet.h
@@ -2,8 +2,9 @@
#include <stdint.h>
+uint32_t htonl(uint32_t hostlong);
+uint16_t htons(uint16_t hostshort);
uint32_t ntohl(uint32_t netlong);
-
uint16_t ntohs(uint16_t netshort);
int inet_aton(const char *cp, struct in_addr *addr);