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