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