mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 02:52:58 +00:00
[CRT]
compile memcmp, abs and labs on MSVC, too. svn path=/branches/cmake-bringup/; revision=50479
This commit is contained in:
parent
0d54e35b94
commit
d3f4900a66
3 changed files with 0 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue