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