shithub: riscv

ref: efdd6afcd69fbaf04fbbddfc1c754b9d31123ec1
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 10);
}