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