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