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