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