git: 9front

ref: a337b4af832c3c1eebf2fb71b0563d052f25a0b5
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 0);
}