Whoops - try again. Include safeties.
authorJordan K. Hubbard <jkh@FreeBSD.org>
Fri, 30 Jul 1993 10:57:13 +0000 (10:57 +0000)
committerJordan K. Hubbard <jkh@FreeBSD.org>
Fri, 30 Jul 1993 10:57:13 +0000 (10:57 +0000)
sys/sys/rlist.h
sys/sys/stat.h
sys/sys/tty.h
sys/sys/wait.h

index 0db798e..cb66477 100644 (file)
  *     Usage:
  *             rlist_free(&swapmap, 100, 200); add space to swapmap
  *             rlist_alloc(&swapmap, 100, &loc); obtain 100 sectors from swap
  *     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 */
 /* 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;
 
 /* heads of lists */
 struct rlist *swapmap;
+
+#endif /* _SYS_RLIST_H_ */
index 57aeeea..96d1f6e 100644 (file)
@@ -129,4 +129,4 @@ int lstat __P((const char *, struct stat *));
 #endif /* not POSIX */
 __END_DECLS
 #endif
 #endif /* not POSIX */
 __END_DECLS
 #endif
-#endif
+#endif /* _SYS_STAT_H_ */
index b3a0bb2..f03cb9f 100644 (file)
@@ -31,7 +31,7 @@
  * SUCH DAMAGE.
  *
  *     @(#)tty.h       7.10 (Berkeley) 6/26/91
  * SUCH DAMAGE.
  *
  *     @(#)tty.h       7.10 (Berkeley) 6/26/91
- * $Header: /a/cvs/386BSD/src/sys.386bsd/sys/tty.h,v 1.1.1.1 1993/06/12 14:58:17 rgrimes Exp $
+ * $Header: /a/cvs/386BSD/src/sys/sys/tty.h,v 1.2 1993/07/30 10:52:01 jkh Exp $
  *
  * PATCHES MAGIC                LEVEL   PATCH THAT GOT US HERE
  * --------------------         -----   ----------------------
  *
  * PATCHES MAGIC                LEVEL   PATCH THAT GOT US HERE
  * --------------------         -----   ----------------------
@@ -44,6 +44,9 @@
  *
  */
 
  *
  */
 
+#ifndef _SYS_TTY_H_
+#define _SYS_TTY_H_
+
 #include <sys/termios.h>
 
 /*
 #include <sys/termios.h>
 
 /*
@@ -208,3 +211,5 @@ struct speedtab {
 /* symbolic sleep message strings */
 extern  char ttyin[], ttyout[], ttopen[], ttclos[], ttybg[], ttybuf[];
 #endif
 /* symbolic sleep message strings */
 extern  char ttyin[], ttyout[], ttopen[], ttclos[], ttybg[], ttybuf[];
 #endif
+
+#endif /* _SYS_TTY_H_ */
index c439d80..54bc3ee 100644 (file)
@@ -159,4 +159,4 @@ pid_t       wait4 __P((pid_t, int *, int, struct rusage *));
 #endif
 __END_DECLS
 #endif
 #endif
 __END_DECLS
 #endif
-#endif
+#endif /* _SYS_WAIT_H_ */