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