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