Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygencopysign.c
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: ReactOS system libraries 00004 * FILE: lib/crt/?????? 00005 * PURPOSE: Unknown 00006 * PROGRAMER: Unknown 00007 * UPDATE HISTORY: 00008 * 25/11/05: Added license header 00009 */ 00010 00011 #include <precomp.h> 00012 #include <internal/ieee.h> 00013 00014 /* 00015 * @implemented 00016 */ 00017 double _copysign (double __d, double __s) 00018 { 00019 union 00020 { 00021 double* __d; 00022 double_s* d; 00023 } d; 00024 union 00025 { 00026 double* __s; 00027 double_s* s; 00028 } s; 00029 d.__d = &__d; 00030 s.__s = &__s; 00031 00032 d.d->sign = s.s->sign; 00033 00034 return __d; 00035 } 00036 Generated on Sun May 27 2012 04:36:28 for ReactOS by
1.7.6.1
|