Deleted Added
full compact
kmem.h (24583) kmem.h (26119)
1/*
1/*
2 * (C)opyright 1993,1994,1995 by Darren Reed.
2 * (C)opyright 1993-1997 by Darren Reed.
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
3 *
4 * Redistribution and use in source and binary forms are permitted
5 * provided that this notice is preserved and due credit is given
6 * to the original author and the contributors.
7 * $Id: kmem.h,v 2.0.2.3 1997/03/10 08:10:38 darrenr Exp $
7 * $Id: kmem.h,v 2.0.2.5 1997/04/30 13:49:35 darrenr Exp $
8 */
9
8 */
9
10#ifndef __KMEM_H__
11#define __KMEM_H__
12
10#ifndef __P
11# ifdef __STDC__
12# define __P(x) x
13# else
14# define __P(x) ()
15# endif
16#endif
17extern int openkmem __P((void));
18extern int kmemcpy __P((char *, long, int));
19
20#define KMEM "/dev/kmem"
21
13#ifndef __P
14# ifdef __STDC__
15# define __P(x) x
16# else
17# define __P(x) ()
18# endif
19#endif
20extern int openkmem __P((void));
21extern int kmemcpy __P((char *, long, int));
22
23#define KMEM "/dev/kmem"
24
25#endif /* __KMEM_H__ */