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