X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=arch%2Fx86_64%2Fbits%2Fstdint.h;h=1bb147f24e02b0445b78079291aadea6c5c4a05e;hb=HEAD;hp=878e4de2a0117e8de88429950c2d8e1c9e21d3a6;hpb=1e12632591ab98a6ea3af8680716c28282552981;p=musl diff --git a/arch/x86_64/bits/stdint.h b/arch/x86_64/bits/stdint.h index 878e4de2..1bb147f2 100644 --- a/arch/x86_64/bits/stdint.h +++ b/arch/x86_64/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 INT64_MIN #define INTPTR_MAX INT64_MAX #define UINTPTR_MAX UINT64_MAX #define PTRDIFF_MIN INT64_MIN #define PTRDIFF_MAX INT64_MAX -#define SIG_ATOMIC_MIN INT64_MIN -#define SIG_ATOMIC_MAX INT64_MAX #define SIZE_MAX UINT64_MAX