ack/lang/cem/libcc/gen/abs.c
1987-01-27 15:57:55 +00:00

4 lines
35 B
C

abs(i){
return i < 0 ? -i : i;
}