Author: tkreuzer Date: Mon Jan 24 19:50:01 2011 New Revision: 50479
URL: http://svn.reactos.org/svn/reactos?rev=50479&view=rev Log: [CRT] compile memcmp, abs and labs on MSVC, too.
Modified: branches/cmake-bringup/lib/sdk/crt/math/abs.c branches/cmake-bringup/lib/sdk/crt/math/labs.c branches/cmake-bringup/lib/sdk/crt/mem/memcmp.c
Modified: branches/cmake-bringup/lib/sdk/crt/math/abs.c URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/sdk/crt/math/a... ============================================================================== --- branches/cmake-bringup/lib/sdk/crt/math/abs.c [iso-8859-1] (original) +++ branches/cmake-bringup/lib/sdk/crt/math/abs.c [iso-8859-1] Mon Jan 24 19:50:01 2011 @@ -1,6 +1,5 @@ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#ifndef _MSC_VER /* * @implemented */ @@ -9,4 +8,3 @@ { return j<0 ? -j : j; } -#endif
Modified: branches/cmake-bringup/lib/sdk/crt/math/labs.c URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/sdk/crt/math/l... ============================================================================== --- branches/cmake-bringup/lib/sdk/crt/math/labs.c [iso-8859-1] (original) +++ branches/cmake-bringup/lib/sdk/crt/math/labs.c [iso-8859-1] Mon Jan 24 19:50:01 2011 @@ -1,6 +1,5 @@ /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
-#ifndef _MSC_VER /* * @implemented */ @@ -9,4 +8,3 @@ { return j<0 ? -j : j; } -#endif
Modified: branches/cmake-bringup/lib/sdk/crt/mem/memcmp.c URL: http://svn.reactos.org/svn/reactos/branches/cmake-bringup/lib/sdk/crt/mem/me... ============================================================================== --- branches/cmake-bringup/lib/sdk/crt/mem/memcmp.c [iso-8859-1] (original) +++ branches/cmake-bringup/lib/sdk/crt/mem/memcmp.c [iso-8859-1] Mon Jan 24 19:50:01 2011 @@ -1,8 +1,6 @@ /* * $Id$ */ - -#ifndef _MSC_VER
#include <string.h>
@@ -17,5 +15,3 @@ } return 0; } - -#endif