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