git: 9front

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