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