shithub: riscv

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