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