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