shithub: riscv

ref: 67fe83b40f4d427d3abc5f52bc1509559ec04214
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 0);
}