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