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