Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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
7typedef __u64 uint64_t;
8typedef __u32 uint32_t;
9typedef __u16 uint16_t;
10typedef __u8 uint8_t;
11
12typedef __s64 int64_t;
13typedef __s32 int32_t;
14typedef __s16 int16_t;
15typedef __s8 int8_t;
16
17#endif /* _DUMMY_STDINT_H */