1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-08 03:07:05 +00:00
reactos/sdk/lib/crt/math/abs.c

16 lines
215 B
C

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