blob: edc9cffcb54364972c47f42f732fb449cae6e179 [file] [log] [blame]
int abs(int a) {
return a > 0 ? a : -a;
}