mirror of
git://git.musl-libc.org/musl
synced 2025-04-04 23:30:14 +00:00
7 lines
103 B
C
7 lines
103 B
C
#include <math.h>
|
|
|
|
long double nexttowardl(long double x, long double y)
|
|
{
|
|
return nextafterl(x, y);
|
|
}
|