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