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