shithub: riscv

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