git: 9front

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