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