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