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