shithub: riscv

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