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