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