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