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