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

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