git: 9front

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