xref: /linux/usr/dummy-include/stdint.h (revision 9e1e9d660255d7216067193d774f338d08d8528d)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef _DUMMY_STDINT_H
3 #define _DUMMY_STDINT_H
4 
5 #include <linux/types.h>
6 
7 typedef	__u64	uint64_t;
8 typedef	__u32	uint32_t;
9 typedef	__u16	uint16_t;
10 typedef	__u8	uint8_t;
11 
12 typedef	__s64	int64_t;
13 typedef	__s32	int32_t;
14 typedef	__s16	int16_t;
15 typedef	__s8	int8_t;
16 
17 #endif /* _DUMMY_STDINT_H */
18