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