mirror of
git://git.musl-libc.org/musl
synced 2024-12-19 21:30:58 +00:00
aacd348637
linux, gcc, etc. all use "sh" as the name for the superh arch. there was already some inconsistency internally in musl: the dynamic linker was searching for "ld-musl-sh.path" as its path file despite its own name being "ld-musl-superh.so.1". there was some sentiment in both directions as to how to resolve the inconsistency, but overall "sh" was favored.
21 lines
540 B
C
21 lines
540 B
C
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_FAST16_MAX INT32_MAX
|
|
#define INT_FAST32_MAX INT32_MAX
|
|
|
|
#define UINT_FAST16_MAX UINT32_MAX
|
|
#define UINT_FAST32_MAX UINT32_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 SIZE_MAX UINT32_MAX
|