• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _STDTYPES_H
4 #define _STDTYPES_H
5 
6 #include <stdint.h>
7 
8 typedef uint8_t u8;
9 typedef uint16_t u16;
10 typedef uint32_t u32;
11 typedef uint64_t u64;
12 typedef int8_t s8;
13 typedef int16_t s16;
14 typedef int32_t s32;
15 
16 typedef uint8_t bool;
17 #define true	1
18 #define false	0
19 
20 #endif /* _STDTYPES_H */
21