xref: /aosp_15_r20/external/coreboot/util/vgabios/include/arch/byteorder.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _BYTEORDER_H
4 #define _BYTEORDER_H
5 
6 #define __LITTLE_ENDIAN 1234
7 
8 #define cpu_to_le16(x) ((uint16_t)(x))
9 #define cpu_to_le32(x) ((uint32_t)(x))
10 
11 #endif /* _BYTEORDER_H */
12