aboutsummaryrefslogtreecommitdiff
path: root/sys/osb/abs.c
blob: 90bd3ad62d832ebbc929b0000e1c5ec7de3afc88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
 */

#define	import_spp
#include <iraf.h>

/* ABS -- Integer absolute value.
 */
XINT
abs_ (XINT *a)
{
	return (abs(a));
}