shithub: riscv

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