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