mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-02-16 13:48:29 +00:00
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
|