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