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