Welcome to mirror list, hosted at ThFree Co, Russian Federation.

s_copysign.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}