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