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