shithub: riscv

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