ref: 0d6910bbeed636179cca0f472e72b31d81bd834c dir: /lib/c/abs.c/
#include <stdlib.h> #undef abs int abs(int n) { return (n < 0) ? -n : n; }