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