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