1 // SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
2 /* Copyright 2013-2015 IBM Corp. */
3 
4 #ifndef __TYPES_H
5 #define __TYPES_H
6 #include <ccan/short_types/short_types.h>
7 #include <ccan/endian/endian.h>
8 
9 /* These are currently just for clarity, but we could apply sparse. */
10 typedef beint16_t __be16;
11 typedef beint32_t __be32;
12 typedef beint64_t __be64;
13 
14 typedef leint16_t __le16;
15 typedef leint32_t __le32;
16 typedef leint64_t __le64;
17 
18 #endif /* __TYPES_H */
19 
20