reactos/lib/sdk/crt/math/labs.c
Timo Kreuzer 81995bfd2e [CRT]
Fix copy pasta. Spotted by rs on irc.

svn path=/branches/cmake-bringup/; revision=50495
2011-01-25 20:56:14 +00:00

15 lines
211 B
C

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
#ifdef _MSC_VER
#pragma warning(disable: 4164)
#pragma function(labs)
#endif
/*
* @implemented
*/
long
labs(long j)
{
return j<0 ? -j : j;
}