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