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