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