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