blob: 23dd3fc079ecbba4e3f013cd4ca47102ef919b08 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
int fedisableexcept(int excepts) {
return 0;
}
int feenableexcept(int excepts) {
if(excepts != 0) {
return -1;
}
return 0;
}
int fegetexcept(void) {
return 0;
}
|