glibc/sysdeps/ieee754/ldbl-opt/nldbl-fmax.c

9 lines
104 B
C

#include "nldbl-compat.h"
double
attribute_hidden
fmaxl (double x, double y)
{
return fmax (x, y);
}