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