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