shithub: riscv

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