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