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