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