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