shithub: riscv

ref: 8e4e1e57303f8eafec8a1ac03670179a39f00b70
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 0);
}