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