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