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