shithub: riscv

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