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