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