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