shithub: riscv

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