Add uint32_t

This commit is contained in:
Pierre Pronchery 2018-03-21 02:59:11 +01:00
parent c9245359ef
commit 15e2dc18d4

View File

@ -19,6 +19,12 @@ typedef __UINT16_TYPE__ uint16_t;
# else # else
typedef unsigned short uint16_t; typedef unsigned short uint16_t;
# endif # endif
# ifdef __UINT32_TYPE__
typedef __UINT32_TYPE__ uint32_t;
# else
typedef unsigned int uint32_t;
# endif
typedef unsigned long size_t; typedef unsigned long size_t;
#endif /* !UKERNEL_STDINT_H */ #endif /* !UKERNEL_STDINT_H */