mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 06:07:59 +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
|