xref: /openbsd/lib/libc/net/htonl.c (revision ed759541)
1 /*	$OpenBSD: htonl.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 htonl
10 
11 uint32_t
htonl(uint32_t x)12 htonl(uint32_t x)
13 {
14 	return htobe32(x);
15 }
16