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