X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=arch%2Fmicroblaze%2Fbits%2Fstdint.h;h=d1b2712199acabb2e597bfeb1850f3e0216705d0;hp=8e21a8cb16ab0e0ebc24d7952f2a889004662df5;hb=3f08154ac494f4739afbc7451f317b2ef1bffbd3;hpb=8c0a3d9e5c169fc9d0f246ab59362b658b029ad7 diff --git a/arch/microblaze/bits/stdint.h b/arch/microblaze/bits/stdint.h index 8e21a8cb..d1b27121 100644 --- a/arch/microblaze/bits/stdint.h +++ b/arch/microblaze/bits/stdint.h @@ -1,23 +1,20 @@ -#define INT_FAST8_MIN INT8_MIN +typedef int32_t int_fast16_t; +typedef int32_t int_fast32_t; +typedef uint32_t uint_fast16_t; +typedef uint32_t uint_fast32_t; + #define INT_FAST16_MIN INT32_MIN #define INT_FAST32_MIN INT32_MIN -#define INT_FAST64_MIN INT64_MIN -#define INT_FAST8_MAX INT8_MAX #define INT_FAST16_MAX INT32_MAX #define INT_FAST32_MAX INT32_MAX -#define INT_FAST64_MAX INT64_MAX -#define UINT_FAST8_MAX UINT8_MAX #define UINT_FAST16_MAX UINT32_MAX #define UINT_FAST32_MAX UINT32_MAX -#define UINT_FAST64_MAX UINT64_MAX #define INTPTR_MIN INT32_MIN #define INTPTR_MAX INT32_MAX #define UINTPTR_MAX UINT32_MAX #define PTRDIFF_MIN INT32_MIN #define PTRDIFF_MAX INT32_MAX -#define SIG_ATOMIC_MIN INT32_MIN -#define SIG_ATOMIC_MAX INT32_MAX #define SIZE_MAX UINT32_MAX