ref: 090b7a5e6744afa35aa1a8ca66071748c228a776 dir: /libnpe/abs.c/
#include <stdlib.h> long long llabs(long long a) { if(a < 0) return -a; return a; }