summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiklas Hallqvist <niklas@cvs.openbsd.org>1996-09-04 22:38:48 +0000
committerNiklas Hallqvist <niklas@cvs.openbsd.org>1996-09-04 22:38:48 +0000
commit38b5c2651fd9117d3ed8ebad8f511ab7b3eda6f6 (patch)
tree83a2c12cdc678ece01fcb3352e3a144ddb9ad629
parent243923546b37dee127b59e7e1ae6cea769059c2d (diff)
s/KERNEL/_KERNEL/
-rw-r--r--sys/sys/pipe.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/sys/pipe.h b/sys/sys/pipe.h
index c018de79cfc..530c16da263 100644
--- a/sys/sys/pipe.h
+++ b/sys/sys/pipe.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: pipe.h,v 1.2 1996/09/04 22:38:47 niklas Exp $ */
+
/*
* Copyright (c) 1996 John S. Dyson
* All rights reserved.
@@ -17,8 +19,6 @@
* is allowed if this notation is included.
* 5. Modifications may be freely made to this file if the above conditions
* are met.
- *
- * $Id: pipe.h,v 1.1 1996/08/27 14:47:07 shawn Exp $
*/
#ifndef _SYS_PIPE_H_
@@ -26,12 +26,12 @@
#ifndef OLD_PIPE
-#ifndef KERNEL
+#ifndef _KERNEL
#include <sys/time.h> /* for struct timeval */
#include <sys/select.h> /* for struct selinfo */
#include <vm/vm.h> /* for vm_page_t */
#include <machine/param.h> /* for PAGE_SIZE */
-#endif
+#endif /* _KERNEL */
/*
* Pipe buffer size, keep moderate in value, pipes take kva space.
@@ -114,9 +114,9 @@ struct pipe {
int pipe_busy; /* busy flag, mostly to handle rundown sanely */
};
-#ifdef KERNEL
+#ifdef _KERNEL
int pipe_stat __P((struct pipe *pipe, struct stat *ub));
-#endif
+#endif /* _KERNEL */
#endif /* !OLD_PIPE */