shithub: riscv

ref: 78c45541eb66a661f4e45c2f86bb5ac37de2408b
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);
}