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