[liba] Add intptr_t and uintptr_t to stdint.h

Change-Id: I7bb28aa1d449da0413c751e66e69f17dc9492d8f
This commit is contained in:
Romain Goyet
2017-07-30 13:20:02 +02:00
committed by Romain Goyet
parent 15725a5cc8
commit 878d86df71
2 changed files with 9 additions and 0 deletions

View File

@@ -11,6 +11,9 @@ typedef signed short int16_t;
typedef signed int int32_t;
typedef signed long long int64_t;
typedef unsigned int uintptr_t;
typedef signed int intptr_t;
typedef uint8_t uint_fast8_t;
typedef uint16_t uint_fast16_t;
typedef uint32_t uint_fast32_t;