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