mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 12:23:31 +00:00
[CRT]
compile memcmp, abs and labs on MSVC, too. svn path=/branches/cmake-bringup/; revision=50479
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
||||
|
||||
#ifndef _MSC_VER
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
@@ -9,4 +8,3 @@ abs(int j)
|
||||
{
|
||||
return j<0 ? -j : j;
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
|
||||
|
||||
#ifndef _MSC_VER
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
@@ -9,4 +8,3 @@ labs(long j)
|
||||
{
|
||||
return j<0 ? -j : j;
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -2,8 +2,6 @@
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#ifndef _MSC_VER
|
||||
|
||||
#include <string.h>
|
||||
|
||||
int memcmp(const void *s1, const void *s2, size_t n)
|
||||
@@ -17,5 +15,3 @@ int memcmp(const void *s1, const void *s2, size_t n)
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user