Improve RAW32 compatibility with other libraries
This commit is contained in:
parent
64a184fc59
commit
ed946e24ab
1 changed files with 7 additions and 0 deletions
|
@ -33,6 +33,13 @@ typedef unsigned char bool_t;
|
||||||
|
|
||||||
#if __STDC_VERSION__ >= 199901L
|
#if __STDC_VERSION__ >= 199901L
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#elif defined(__GNUC__) || defined(__GNUG__)
|
||||||
|
typedef __INT8_TYPE__ int8_t;
|
||||||
|
typedef __UINT8_TYPE__ uint8_t;
|
||||||
|
typedef __INT16_TYPE__ int16_t;
|
||||||
|
typedef __UINT16_TYPE__ uint16_t;
|
||||||
|
typedef __INT32_TYPE__ int32_t;
|
||||||
|
typedef __UINT32_TYPE__ uint32_t;
|
||||||
#else
|
#else
|
||||||
typedef signed char int8_t;
|
typedef signed char int8_t;
|
||||||
typedef unsigned char uint8_t;
|
typedef unsigned char uint8_t;
|
||||||
|
|
Loading…
Add table
Reference in a new issue