amiga-libnix3/stdlib/abs.c

3 lines
37 B
C

int abs(int j)
{ return j>=0?j:-j; }