shithub: riscv

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