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