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