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