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