shithub: plan9front

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