shithub: riscv

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