mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 17:12:55 +02:00
12 lines
150 B
C
12 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
|