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