shithub: plan9front

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