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