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