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