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