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