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