mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-22 14:43:08 +00:00
13 lines
204 B
C
13 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
|