shithub: riscv

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