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