git: 9front

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