mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
update stdint.h to include c99 types
needed for some third party libraries to compile
This commit is contained in:
parent
a48858f828
commit
200d413def
1 changed files with 9 additions and 0 deletions
|
@ -18,6 +18,15 @@ typedef int int32_t;
|
|||
typedef short int16_t;
|
||||
typedef char int8_t;
|
||||
|
||||
typedef char int_least8_t;
|
||||
typedef unsigned char uint_least8_t;
|
||||
typedef short int_least16_t;
|
||||
typedef unsigned short uint_least16_t;
|
||||
typedef int int_least32_t;
|
||||
typedef unsigned int uint_least32_t;
|
||||
typedef long long int_least64_t;
|
||||
typedef unsigned long long uint_least64_t;
|
||||
|
||||
#define __int_c_join(a, b) a ## b
|
||||
#define __int_c(v, suffix) __int_c_join(v, suffix)
|
||||
#define __uint_c(v, suffix) __int_c_join(v##U, suffix)
|
||||
|
|
Loading…
Reference in a new issue