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