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