Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / sdk / lib / crt / float / chgsign.c
diff --git a/reactos/sdk/lib/crt/float/chgsign.c b/reactos/sdk/lib/crt/float/chgsign.c
deleted file mode 100644 (file)
index 5f3a0f5..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS system libraries
- * FILE:        lib/sdk/crt/float/chgsign.c
- * PURPOSE:     Unknown
- * PROGRAMER:   Unknown
- * UPDATE HISTORY:
- *              25/11/05: Added license header
- */
-
-#include <precomp.h>
-
-#include <internal/ieee.h>
-
-/*
- * @implemented
- */
-double _chgsign( double __x )
-{
-       union
-       {
-           double* __x;
-           double_s *x;
-       } u;
-       u.__x = &__x;
-
-       if ( u.x->sign == 1 )
-               u.x->sign = 0;
-       else
-               u.x->sign = 1;
-
-       return __x;
-}