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