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