blob: 93b1962fd08ccead9a56ae95110b6bfc1b8aef27 [file] [log] [blame]
/* 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 */