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