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