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