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