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