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