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