diff options
Diffstat (limited to 'userland/libc/include/arpa/inet.h')
-rw-r--r-- | userland/libc/include/arpa/inet.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/userland/libc/include/arpa/inet.h b/userland/libc/include/arpa/inet.h index e69de29..70dcac9 100644 --- a/userland/libc/include/arpa/inet.h +++ b/userland/libc/include/arpa/inet.h @@ -0,0 +1,6 @@ +#include <stdint.h> + +uint32_t htonl(uint32_t hl); +uint16_t htons(uint16_t hs); +uint32_t ntohl(uint32_t nl); +uint16_t ntohs(uint16_t ns); |