shithub: plan9front

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