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