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