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