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