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