git: 9front

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