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