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