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