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