reactos/reactos/lib/libcntpr/math/labs.c

9 lines
88 B
C

#include <string.h>
/*
* @implemented
*/
long
labs(long j)
{
return j<0 ? -j : j;
}