shithub: riscv

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