Hopefully create a branch and not destroy the svn repository.

svn path=/branches/reactos-yarotows/; revision=45219
This commit is contained in:
Timo Kreuzer 2010-01-23 23:25:04 +00:00
parent c88ec84439
commit 6afbc8f483
19442 changed files with 0 additions and 1060695 deletions

View file

@ -0,0 +1,36 @@
/*
* 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;
}