Files
ZeroOS/third_party/lwext4_config/include/stdint.h
T
2026-07-29 12:35:25 +08:00

19 lines
433 B
C

#ifndef ZEROOS_STDINT_H_
#define ZEROOS_STDINT_H_
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef long long int64_t;
typedef unsigned long long uint64_t;
typedef __INTPTR_TYPE__ intptr_t;
typedef __UINTPTR_TYPE__ uintptr_t;
#define UINT32_MAX 0xffffffffu
#define UINT64_MAX 0xffffffffffffffffull
#endif