shithub: riscv

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