summaryrefslogtreecommitdiff
path: root/libgcompat/fenv.c
blob: 07dbec1a245ace03f5c9de024480a05a4ab2c141 (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;
}