git: 9front

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