mirror of
git://git.musl-libc.org/musl
synced 2024-12-18 21:05:13 +00:00
8c0a3d9e5c
based on initial work by rdp, with heavy modifications. some features including threads are untested because qemu app-level emulation seems to be broken and I do not have a proper system image for testing.
11 lines
178 B
C
11 lines
178 B
C
#define FE_ALL_EXCEPT 0
|
|
#define FE_TONEAREST 0
|
|
|
|
typedef unsigned long fexcept_t;
|
|
|
|
typedef struct {
|
|
unsigned long __cw;
|
|
} fenv_t;
|
|
|
|
#define FE_DFL_ENV ((const fenv_t *) -1)
|