shithub: riscv

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