shithub: riscv

ref: cde69a78225ee3b8c5e46ddb98ce4bd599d4f355
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);
}