summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_copysign.c
blob: b4b2390e8357c899153d625f8cd03b0d972d9e00 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/copysign.h"

double copysign(double x, double y)
{
    return _copysign(x, y);
}