summaryrefslogtreecommitdiff
path: root/tools/sysinc/endian.h
blob: 6115c0b64488ca5786342f1099e785817ba8fb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* 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