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