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