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