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