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