shithub: riscv

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