diff options
Diffstat (limited to 'system/include/net/arpa/inet.h')
-rw-r--r-- | system/include/net/arpa/inet.h | 3 |
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); |