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