shithub: riscv

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