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