shithub: riscv

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