1 /* $OpenBSD: ntohl.c,v 1.8 2024/04/15 14:30:48 naddy Exp $ */ 2 /* 3 * Public domain. 4 */ 5 6 #include <sys/types.h> 7 #include <endian.h> 8 9 #undef ntohl 10 11 uint32_t ntohl(uint32_t x)12 ntohl(uint32_t x) 13 { 14 return be32toh(x); 15 } 16