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