This commit is contained in:
Gregory Nutt 2015-01-26 18:55:17 -06:00
parent 06337a4f7a
commit 0a11f9b669
3 changed files with 3 additions and 0 deletions

View File

@ -54,6 +54,7 @@ double copysign(double x, double y)
{
return -fabs(x);
}
return fabs(x);
}
#endif

View File

@ -53,5 +53,6 @@ float copysignf(float x, float y)
{
return -fabsf(x);
}
return fabsf(x);
}

View File

@ -54,6 +54,7 @@ long double copysignl(long double x, long double y)
{
return -fabsl(x);
}
return fabsl(x);
}
#endif