shithub: riscv

ref: 8d8935618ca946f4349468d53da329beeb66becb
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 0);
}