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