summaryrefslogtreecommitdiff
path: root/libgcompat/fenv.c
blob: b761f8936ff44837a96ab74d67b9968d1a474845 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
int fedisableexcept(int excepts) {
	return 0;
}

int feenableexcept(int excepts) {
	return 0;
}

int fegetexcept(void) {
	return 0;
}