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