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