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