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