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