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