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