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