shithub: riscv

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