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