NetBSD/usr.sbin/ipf/ipfstat/kmem.h

28 lines
613 B
C
Raw Normal View History

1997-09-21 20:47:50 +04:00
/* $NetBSD: kmem.h,v 1.1.1.6 1997/09/21 16:48:00 veego Exp $ */
1997-03-29 05:49:40 +03:00
/*
1997-05-25 15:45:50 +04:00
* (C)opyright 1993-1997 by Darren Reed.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and due credit is given
* to the original author and the contributors.
1997-09-21 20:47:50 +04:00
* Id: kmem.h,v 2.0.2.5 1997/04/30 13:49:35 darrenr Exp
*/
1997-05-25 15:45:50 +04:00
#ifndef __KMEM_H__
#define __KMEM_H__
1997-03-29 05:49:40 +03:00
#ifndef __P
# ifdef __STDC__
# define __P(x) x
# else
# define __P(x) ()
# endif
#endif
extern int openkmem __P((void));
extern int kmemcpy __P((char *, long, int));
#define KMEM "/dev/kmem"
1997-05-25 15:45:50 +04:00
#endif /* __KMEM_H__ */