shithub: riscv

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