update for HEAD-2003091401
[reactos.git] / lib / crtdll / stdlib / abs.c
1 /* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrt/stdlib.h>
3 #include <msvcrt/crttypes.h>
4
5 /*
6  * @implemented
7  */
8 int
9 abs(int j)
10 {
11   return j<0 ? -j : j;
12 }