ack/lang/cem/libcc/gen/abs.c
1987-03-31 10:45:53 +00:00

5 lines
50 B
C

/* $Header$ */
abs(i){
return i < 0 ? -i : i;
}