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