shithub: riscv

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