(root)/
glibc-2.38/
sysdeps/
ieee754/
ldbl-opt/
nldbl-nexttoward.c
       1  #define nexttoward nexttoward_XXX
       2  #define nexttowardl nexttowardl_XXX
       3  #include "nldbl-compat.h"
       4  #undef nexttoward
       5  #undef nexttowardl
       6  
       7  double
       8  attribute_hidden
       9  nexttoward (double x, double y)
      10  {
      11    return nextafter (x, y);
      12  }
      13  extern __typeof (nexttoward) nexttowardl attribute_hidden;
      14  strong_alias (nexttoward, nexttowardl)