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