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