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