shithub: riscv

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