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