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