mirror of
git://git.musl-libc.org/musl
synced 2024-12-25 08:02:28 +00:00
200d15479c
With the exception of a fenv implementation, the port is fully featured. The port has been tested in or1ksim, the golden reference functional simulator for OpenRISC 1000. It passes all libc-test tests (except the math tests that requires a fenv implementation). The port assumes an or1k implementation that has support for atomic instructions (l.lwa/l.swa). Although it passes all the libc-test tests, the port is still in an experimental state, and has yet experienced very little 'real-world' use.
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
|