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