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