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