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