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