mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 01:34:12 +00:00
057151cb21
Signed-off-by: Asahi Lina <lina@asahilina.net>
12 lines
204 B
C
12 lines
204 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef ENDIAN_H
|
|
#define ENDIAN_H
|
|
|
|
#define __LITTLE_ENDIAN 1234
|
|
#define __BIG_ENDIAN 4321
|
|
#define __PDP_ENDIAN 3412
|
|
|
|
#define __BYTE_ORDER __LITTLE_ENDIAN
|
|
|
|
#endif
|