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