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