mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
37 lines
559 B
C
37 lines
559 B
C
|
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: ReactOS system libraries
|
||
|
* FILE: lib/crt/??????
|
||
|
* 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_t* d;
|
||
|
} d;
|
||
|
union
|
||
|
{
|
||
|
double* __s;
|
||
|
double_t* s;
|
||
|
} s;
|
||
|
d.__d = &__d;
|
||
|
s.__s = &__s;
|
||
|
|
||
|
d.d->sign = s.s->sign;
|
||
|
|
||
|
return __d;
|
||
|
}
|
||
|
|