git: 9front

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