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