xref: /reactos/sdk/lib/crt/math/abs.c (revision c2c66aff)
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 
3 #ifdef _MSC_VER
4 #pragma warning(disable: 4164)
5 #pragma function(abs)
6 #endif
7 
8 /*
9  * @implemented
10  */
11 int
12 __cdecl
abs(int j)13 abs(int j)
14 {
15   return j<0 ? -j : j;
16 }
17