Skip to content
Snippets Groups Projects
Commit 1bae8f45 authored by Tomasz Wlostowski's avatar Tomasz Wlostowski Committed by Alessandro Rubini
Browse files

rt: include/stdint.h: added (u)int64_t types

parent ef8502f9
Branches
Tags
No related merge requests found
......@@ -9,8 +9,11 @@
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned long uint32_t;
typedef unsigned long long uint64_t;
typedef signed char int8_t;
typedef signed short int16_t;
typedef signed long int32_t;
typedef signed long long int64_t;
#endif /* __ARCH_LM32_STDINT_H__ */
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment