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