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