repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
loongarch64: add new syscall numbers
[musl.git]
/
src
/
network
/
ntohl.c
blob
d6fce4590d43a3ee868d7cd807c89c0b6599ee3e
1
#include <netinet/in.h>
2
#include <byteswap.h>
3
4
uint32_t
ntohl
(
uint32_t
n
)
5
{
6
union
{
int
i
;
char
c
; }
u
= {
1
};
7
return
u
.
c
?
bswap_32
(
n
) :
n
;
8
}