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

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