shithub: riscv

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