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