shithub: riscv

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