mirror of
https://github.com/ZeroOSProject/ZeroOS.git
synced 2026-09-13 02:24:42 +08:00
19 lines
433 B
C
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
|