shithub: plan9front

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