summaryrefslogtreecommitdiff
path: root/usr/dummy-include/stdint.h
blob: 93b1962fd08ccead9a56ae95110b6bfc1b8aef27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef _DUMMY_STDINT_H
#define _DUMMY_STDINT_H

#include <linux/types.h>

typedef	__u64	uint64_t;
typedef	__u32	uint32_t;
typedef	__u16	uint16_t;
typedef	__u8	uint8_t;

typedef	__s64	int64_t;
typedef	__s32	int32_t;
typedef	__s16	int16_t;
typedef	__s8	int8_t;

#endif /* _DUMMY_STDINT_H */