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