Deleted Added
full compact
kmem.c (344833) kmem.c (369186)
1/* $FreeBSD: stable/11/contrib/ipfilter/lib/kmem.c 344833 2019-03-06 02:37:25Z cy $ */
1/* $FreeBSD: stable/11/contrib/ipfilter/lib/kmem.c 369186 2021-01-31 04:32:46Z cy $ */
2
3/*
4 * Copyright (C) 2012 by Darren Reed.
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 */
8/*
9 * kmemcpy() - copies n bytes from kernel memory into user buffer.

--- 15 unchanged lines hidden (view full) ---

25#include <netinet/in.h>
26#include <arpa/inet.h>
27#include <netinet/in_systm.h>
28#include <netinet/ip.h>
29#include <net/if.h>
30
31#include "kmem.h"
32
2
3/*
4 * Copyright (C) 2012 by Darren Reed.
5 *
6 * See the IPFILTER.LICENCE file for details on licencing.
7 */
8/*
9 * kmemcpy() - copies n bytes from kernel memory into user buffer.

--- 15 unchanged lines hidden (view full) ---

25#include <netinet/in.h>
26#include <arpa/inet.h>
27#include <netinet/in_systm.h>
28#include <netinet/ip.h>
29#include <net/if.h>
30
31#include "kmem.h"
32
33#ifndef __STDC__
34# define const
35#endif
36
37#if !defined(lint)
38static const char sccsid[] = "@(#)kmem.c 1.4 1/12/96 (C) 1992 Darren Reed";
39static const char rcsid[] = "@(#)$Id$";
40#endif
41
42
43
44static kvm_t *kvm_f = NULL;

--- 78 unchanged lines hidden ---
33#if !defined(lint)
34static const char sccsid[] = "@(#)kmem.c 1.4 1/12/96 (C) 1992 Darren Reed";
35static const char rcsid[] = "@(#)$Id$";
36#endif
37
38
39
40static kvm_t *kvm_f = NULL;

--- 78 unchanged lines hidden ---