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