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