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