Blame sysdeps/ieee754/ldbl-opt/nldbl-nexttowardf.c

Packit 6c4009
#define nexttowardf nexttowardf_XXX
Packit 6c4009
#include "nldbl-compat.h"
Packit 6c4009
#undef nexttowardf
Packit 6c4009
Packit 6c4009
extern float __nldbl_nexttowardf (float x, double y);
Packit 6c4009
Packit 6c4009
float
Packit 6c4009
attribute_hidden
Packit 6c4009
nexttowardf (float x, double y)
Packit 6c4009
{
Packit 6c4009
  return __nldbl_nexttowardf (x, y);
Packit 6c4009
}