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