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