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