git: 9front

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