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