git: 9front

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