Sign in
cobalt
/
cobalt
/
1bdf8b5470dc937a8c92ce7e2f6d3392c6a1180c
/
.
/
third_party
/
musl
/
src
/
math
/
nexttowardl.c
blob: 67a634039f606be277214ae791cccc1b0ef57788 [
file
] [
log
] [
blame
]
#include
<math.h>
long
double
nexttowardl
(
long
double
x
,
long
double
y
)
{
return
nextafterl
(
x
,
y
);
}