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