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