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