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