2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
8 /*****************************************************************************
19 Compute the absolute value of j.
25 The absolute value of j.
43 ******************************************************************************/
45 return (j
< 0) ? -j
: j
;