shithub: riscv

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