reactos/lib/sdk/crt/math/abs.c
Timo Kreuzer 5eb25b5c24 Create a branch for audio work
svn path=/branches/audio-bringup/; revision=49478
2010-11-05 11:04:48 +00:00

11 lines
130 B
C

/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
/*
* @implemented
*/
int
abs(int j)
{
return j<0 ? -j : j;
}