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