mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:03:10 +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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue