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