abs.h 59 Bytes Raw Blame History Permalink 1 2 3 4 5 int abs(int x) { if (x < 0) return -x; return x; }