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