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