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