shithub: riscv

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