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