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