summaryrefslogtreecommitdiff
path: root/util/vgabios/include/arch/byteorder.h
blob: 754ff754a98e41be510c547baa2108495ee3145e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* This file is part of the coreboot project. */
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef _BYTEORDER_H
#define _BYTEORDER_H

#define __LITTLE_ENDIAN 1234

#define cpu_to_le16(x) ((uint16_t)(x))
#define cpu_to_le32(x) ((uint32_t)(x))

#endif /* _BYTEORDER_H */