xref: /openbsd-src/lib/libc/net/htonl.c (revision 3d61058aa5c692477b6d18acfbbdb653a9930ff9)
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
12 htonl(uint32_t x)
13 {
14 	return htobe32(x);
15 }
16