Files
reactos/reactos/lib/string/abs.c
T
Alex Ionescu 48fe1fb84b Share more duplicated functions
svn path=/trunk/; revision=17734
2005-09-08 05:03:34 +00:00

11 lines
96 B
C

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