Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_bionic
/
2483d93e0547bdd3f60f37a0269f3550edab95ea
/
.
/
libc
/
upstream-openbsd
/
lib
/
libc
/
net
/
ntohl.c
blob: 7592398e8cab36c37304d792001599fefb77e88d [
file
] [
log
] [
blame
]
/* $OpenBSD: ntohl.c,v 1.8 2024/04/15 14:30:48 naddy Exp $ */
/*
* Public domain.
*/
#include
<sys/types.h>
#include
<endian.h>
#undef
ntohl
uint32_t
ntohl
(
uint32_t
x
)
{
return
be32toh
(
x
);
}