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