summaryrefslogtreecommitdiff
path: root/userland/libc/arpa/inet/ntohl.c
blob: 456819d7769a32031d04d43cf0a97eec4d8bcada (plain)
1
2
3
4
5
#include <arpa/inet.h>
#include <endian.h>
#include <stdint.h>

uint32_t ntohl(uint32_t nl) { return htonl(nl); }