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