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