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