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