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