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