shithub: riscv

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