glibc/sysdeps/ieee754/ldbl-opt/nldbl-nexttowardf.c
Jakub Jelinek 0ecb606cb6 2.5-18.1
2007-07-12 18:26:36 +00:00

13 lines
233 B
C

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