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