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