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