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