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