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