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