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