xref: /csrg-svn/lib/libc/stdlib/abs.c (revision 42179)
142099Sbostic /*-
242099Sbostic  * Copyright (c) 1990 The Regents of the University of California.
342099Sbostic  * All rights reserved.
442099Sbostic  *
542099Sbostic  * %sccs.include.redist.c%
642099Sbostic  */
742099Sbostic 
842099Sbostic #if defined(LIBC_SCCS) && !defined(lint)
9*42179Sbostic static char sccsid[] = "@(#)abs.c	5.2 (Berkeley) 05/17/90";
1042099Sbostic #endif /* LIBC_SCCS and not lint */
1142099Sbostic 
12*42179Sbostic #include <stdlib.h>
13*42179Sbostic 
1442099Sbostic int
1542099Sbostic abs(j)
1642099Sbostic 	int j;
1742099Sbostic {
1842099Sbostic 	return(j < 0 ? -j : j);
1942099Sbostic }
20