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