aboutsummaryrefslogtreecommitdiff
path: root/src/math/nexttowardl.c
blob: 3ad7f8a4f64d825d96dbdf49cc516ad1f221d998 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <math.h>

long double nexttowardl(long double x, long double y)
{
	return nextafterl(x, y);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif