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