summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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_ */