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