ack/lang/m2/libm2/absi.c

5 lines
38 B
C
Raw Normal View History

1987-05-13 14:36:45 +00:00
_absi(i)
{
return i >= 0 ? i : -i;
}