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