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