mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 10:42:45 +00:00
2a63c3be15
Remove /^/[*/]\s*\$FreeBSD\$.*\n/
30 lines
470 B
C
30 lines
470 B
C
|
|
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __KMEM_H__
|
|
#define __KMEM_H__
|
|
|
|
#ifndef __P
|
|
# define __P(x) x
|
|
#endif
|
|
extern int openkmem(char *, char *);
|
|
extern int kmemcpy(char *, long, int);
|
|
extern int kstrncpy(char *, long, int);
|
|
|
|
#if defined(__NetBSD__)
|
|
# include <paths.h>
|
|
#endif
|
|
|
|
#ifdef _PATH_KMEM
|
|
# define KMEM _PATH_KMEM
|
|
#else
|
|
# define KMEM "/dev/kmem"
|
|
#endif
|
|
|
|
#endif /* __KMEM_H__ */
|