shithub: libgraphics

ref: 98978f5594cb28a60f8f3db8259922871992ce67
dir: /memsetl.c/

View raw version
#include <u.h>
#include <libc.h>

void
_memsetl(void *dp, ulong v, usize len)
{
	ulong *p;

	p = dp;
	while(len--)
		*p++ = v;
}