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