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

float copysignf(float x, float y)
{
    return _copysignf(x, y);
}