ref: 9c7973946f1d199343adaf0f516799bb6fd9ae0d dir: /lib/c/abs.c/
#include <stdlib.h> #undef abs int abs(int n) { return (n < 0) ? -n : n; }