summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-remainder.c
blob: 581dc78a4d5c64dd365728d8e26ac43ecffab805 (plain)
1
2
3
4
5
6
7
8
9
10
#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)