shithub: plan9front

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