mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 02:20:10 +00:00
13 lines
233 B
C
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);
|
|
}
|