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