mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
36 lines
573 B
C
36 lines
573 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/sdk/crt/float/copysign.c
|
|
* PURPOSE: Unknown
|
|
* PROGRAMER: Unknown
|
|
* UPDATE HISTORY:
|
|
* 25/11/05: Added license header
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
#include <internal/ieee.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
double _copysign (double __d, double __s)
|
|
{
|
|
union
|
|
{
|
|
double* __d;
|
|
double_s* d;
|
|
} d;
|
|
union
|
|
{
|
|
double* __s;
|
|
double_s* s;
|
|
} s;
|
|
d.__d = &__d;
|
|
s.__s = &__s;
|
|
|
|
d.d->sign = s.s->sign;
|
|
|
|
return __d;
|
|
}
|
|
|