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