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