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