shithub: plan9front

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