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