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