From 1172bacb071e65d1ce80622682d76c9b6b22bed7 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Fri, 30 Jul 1993 10:57:09 +0000 Subject: [PATCH] Whoops - try again. Include safeties. --- sys/sys/rlist.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys/sys/rlist.h b/sys/sys/rlist.h index 0db798ec904..cb664779cd3 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_ */