git: 9front

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