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