mirror of
https://github.com/ZeroOSProject/ZeroOS.git
synced 2026-09-13 02:24:42 +08:00
内存缓存和ext4完整支持
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user