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