shithub: plan9front

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