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