summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1993-07-30 10:57:09 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1993-07-30 10:57:09 +0000
commit1172bacb071e65d1ce80622682d76c9b6b22bed7 (patch)
tree3a72bb8a5cc7399a9789a874f38ad4969948dc93
parent5cd488dfd02ef61c137f20392d7a87344e63d77c (diff)
Notes
-rw-r--r--sys/sys/rlist.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/sys/rlist.h b/sys/sys/rlist.h
index 0db798ec9044..cb664779cd31 100644
--- a/sys/sys/rlist.h
+++ b/sys/sys/rlist.h
@@ -14,9 +14,12 @@
* Usage:
* rlist_free(&swapmap, 100, 200); add space to swapmap
* rlist_alloc(&swapmap, 100, &loc); obtain 100 sectors from swap
- * $Header: /a/cvs/386BSD/src/sys.386bsd/sys/rlist.h,v 1.1.1.1 1993/06/12 14:58:17 rgrimes Exp $
+ * $Header: /a/cvs/386BSD/src/sys/sys/rlist.h,v 1.2 1993/07/30 10:51:58 jkh Exp $
*/
+#ifndef _SYS_RLIST_H_
+#define _SYS_RLIST_H_
+
/* A resource list element. */
struct rlist {
unsigned rl_start; /* boundaries of extent - inclusive */
@@ -32,3 +35,5 @@ extern rlist_destroy __P((struct rlist **));
/* heads of lists */
struct rlist *swapmap;
+
+#endif /* _SYS_RLIST_H_ */