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