mirror of
git://git.musl-libc.org/musl
synced 2025-01-28 01:22:49 +00:00
6315004f61
basically, this version of the code was obtained by starting with rdp's work from his ellcc source tree, adapting it to musl's build system and coding style, auditing the bits headers for discrepencies with kernel definitions or glibc/LSB ABI or large file issues, fixing up incompatibility with the old binutils from aboriginal linux, and adding some new special cases to deal with the oddities of sigaction and pipe syscall interfaces on mips. at present, minimal test programs work, but some interfaces are broken or missing. threaded programs probably will not link.
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)
|