13 lines
179 B
C
13 lines
179 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)abs.c 1.1 94/10/31 SMI"; /* from S5R2 1.2 */
|
|
#endif
|
|
|
|
/*LINTLIBRARY*/
|
|
|
|
int
|
|
abs(arg)
|
|
register int arg;
|
|
{
|
|
return (arg >= 0 ? arg : -arg);
|
|
}
|