shithub: riscv

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