shithub: riscv

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