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