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