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