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