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