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