ack/lang/m2/libm2/absi.c
1987-05-13 14:36:45 +00:00

5 lines
38 B
C

_absi(i)
{
return i >= 0 ? i : -i;
}