shithub: riscv

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