shithub: riscv

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