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