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