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