fix type issues in stdint.h so underlying types of 64-bit types match ABI
[musl] / arch / arm / bits / alltypes.h.sh
index a531ee0..c1db1a0 100755 (executable)
@@ -56,11 +56,15 @@ TYPEDEF uint64_t           uint_fast64_t;
 TYPEDEF long          intptr_t;
 TYPEDEF unsigned long uintptr_t;
 
+TYPEDEF long long          intmax_t;
+TYPEDEF unsigned long long uintmax_t;
+
 TYPEDEF float float_t;
 TYPEDEF double double_t;
 
 TYPEDEF long time_t;
 TYPEDEF int suseconds_t;
+TYPEDEF unsigned useconds_t;
 STRUCT timeval { time_t tv_sec; int tv_usec; };
 STRUCT timespec { time_t tv_sec; long tv_nsec; };