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