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