mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 04:37:55 +00:00
12 lines
195 B
C
12 lines
195 B
C
#include <sys/cdefs.h>
|
|
|
|
#pragma once
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#define bswap_16(x) (__builtin_bswap16(x))
|
|
#define bswap_32(x) (__builtin_bswap32(x))
|
|
#define bswap_64(x) (__builtin_bswap64(x))
|
|
|
|
__END_DECLS
|