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