shithub: riscv

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