reactos/lib/sdk/crt/math/labs.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
133 B
C

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