branch update for HEAD-2003021201
[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 int
6 abs(int j)
7 {
8   return j<0 ? -j : j;
9 }