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