shithub: plan9front

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