shithub: riscv

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