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