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