git: 9front

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