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