shithub: riscv

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