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