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