added whiteout
[unix-history] / usr / src / lib / libc / stdlib / abs.c
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
*
* %sccs.include.redist.c%
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)abs.c 8.1 (Berkeley) %G%";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
int
abs(j)
int j;
{
return(j < 0 ? -j : j);
}