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