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