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