ref: cf37a1010f7c9aabce1d3598d5a62489eb01d48c dir: /sys/src/libc/port/atoll.c/
#include <u.h> #include <libc.h> vlong atoll(char *s) { return strtoll(s, nil, 10); }