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