shithub: riscv

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