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