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