shithub: riscv

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