Mostly minor updates to the source tree for portcls.
[reactos.git] / reactos / lib / string / abs.c
1 #include <string.h>
2
3 /*
4 * @implemented
5 */
6 int
7 abs(int j)
8 {
9 return j<0 ? -j : j;
10 }