mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 03:34:59 +00:00
11 lines
150 B
C
11 lines
150 B
C
#pragma once
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
#define LITTLE_ENDIAN 1234
|
|
#define BIG_ENDIAN 4321
|
|
#define BYTE_ORDER LITTLE_ENDIAN
|
|
|
|
__END_DECLS
|