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