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