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