Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_bionic
/
a3255e2cd6afc09b361a23ce1cd0b105eb8b89fc
/
.
/
libc
/
upstream-openbsd
/
lib
/
libc
/
net
/
htonl.c
blob: 58bfb4699a7311589889ef59e2e9e8827db2f426 [
file
] [
log
] [
blame
]
/* $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
);
}