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