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