Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
mingw
misc
fegetexcept.c
pretty
plain
permalink
blame
history
•
8 lines
•
146 B
1
#define _GNU_SOURCE
2
#include <fenv.h>
3
#include <internal.h>
4
5
int __cdecl fegetexcept(void)
6
{
7
return ~__mingw_controlfp(0, 0) & FE_ALL_EXCEPT;
8
}