mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
16 lines
211 B
C
16 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;
|
|
}
|