ack/lang/cem/libcc/gen/abs.c

4 lines
35 B
C
Raw Normal View History

1987-01-27 15:57:55 +00:00
abs(i){
return i < 0 ? -i : i;
}