2024-04-16 02:31:24 +00:00
|
|
|
/* $OpenBSD: ntohl.c,v 1.8 2024/04/15 14:30:48 naddy Exp $ */
|
2023-04-30 01:15:27 +00:00
|
|
|
/*
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <endian.h>
|
|
|
|
|
|
|
|
#undef ntohl
|
|
|
|
|
2024-04-16 02:31:24 +00:00
|
|
|
uint32_t
|
|
|
|
ntohl(uint32_t x)
|
2023-04-30 01:15:27 +00:00
|
|
|
{
|
2024-04-16 02:31:24 +00:00
|
|
|
return be32toh(x);
|
2023-04-30 01:15:27 +00:00
|
|
|
}
|