summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-nexttoward.c
blob: acbd01a0cfd6644912303edd3cbd4bd0fb1f8a14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define nexttoward nexttoward_XXX
#define nexttowardl nexttowardl_XXX
#include "nldbl-compat.h"
#undef nexttoward
#undef nexttowardl

double
attribute_hidden
nexttoward (double x, double y)
{
  return nextafter (x, y);
}
extern __typeof (nexttoward) nexttowardl attribute_hidden;
strong_alias (nexttoward, nexttowardl)