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