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