OpenSolaris_b135/cmd/ipf/lib/common/kmemcpywrap.c

Compare this file to the similar file:
Show the results in this format:

#include "ipf.h"
#include "kmem.h"

int kmemcpywrap(from, to, size)
void *from, *to;
size_t size;
{
	int ret;

	ret = kmemcpy((caddr_t)to, (u_long)from, size);
	return ret;
}