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