shithub: riscv

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