shithub: riscv

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