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