about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-copysign.c
blob: 045f00dda88149ce1e799dee0a8e0d7affd8ad36 (plain) (blame)
1
2
3
4
5
6
7
8
#include "nldbl-compat.h"

double
attribute_hidden
copysignl (double x, double y)
{
  return __copysign (x, y);
}