freebsd-dev/sbin/ipf/libipf/kmemcpywrap.c
Cy Schubert 2582ae5740 ipfilter: Adjust userland returns to conform to style(9)
Adjust ipfilter's userland return statements to conform to style(9).

MFC after:	1 month
2022-01-03 18:06:43 -08:00

23 lines
302 B
C

/* $FreeBSD$ */
/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
#include "ipf.h"
#include "kmem.h"
int
kmemcpywrap(void *from, void *to, size_t size)
{
int ret;
ret = kmemcpy((caddr_t)to, (u_long)from, size);
return(ret);
}