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