mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
18 lines
334 B
C
18 lines
334 B
C
/* 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 */
|