blob: ef22ea306801ee845f25a4790457545be2f0392b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | /*	$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);
}
 |