summaryrefslogtreecommitdiff
path: root/lib/libc/fenv/fesetround.c
blob: 0c7c6bfe33744a51e5c1afd9af741742ed7cb667 (plain)
1
2
3
4
5
6
7
8
#include <fenv.h>

int __fesetround(int);

int fesetround(int round)
{
	return __fesetround(round);
}