shithub: plan9front

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