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