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