shithub: riscv

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