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

11 lines
198 B
C

#include "nldbl-compat.h"
double
attribute_hidden
remainderl (double x, double y)
{
return remainder (x, y);
}
extern __typeof (remainderl) dreml attribute_hidden;
weak_alias (remainderl, dreml)