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