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