shithub: plan9front

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