diff options
author | bde <bde@FreeBSD.org> | 1998-03-28 10:33:27 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-03-28 10:33:27 +0000 |
commit | cd450d67141a2e84500ff624dc9d39c255a7de77 (patch) | |
tree | b93fd2b4ccc29aeaa8d3fbc536cd0a353833c0d5 /sys/kern/sys_pipe.c | |
parent | dee7f44b926e2ae7097a847424fc1f14a017ba0d (diff) | |
download | FreeBSD-src-cd450d67141a2e84500ff624dc9d39c255a7de77.zip FreeBSD-src-cd450d67141a2e84500ff624dc9d39c255a7de77.tar.gz |
Moved some #includes from <sys/param.h> nearer to where they are actually
used.
Diffstat (limited to 'sys/kern/sys_pipe.c')
-rw-r--r-- | sys/kern/sys_pipe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/sys_pipe.c b/sys/kern/sys_pipe.c index c237952..c6b9320 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -16,7 +16,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: sys_pipe.c,v 1.39 1998/02/09 06:09:25 eivind Exp $ + * $Id: sys_pipe.c,v 1.40 1998/03/26 20:51:47 phk Exp $ */ /* @@ -62,6 +62,7 @@ #include <sys/signalvar.h> #include <sys/sysproto.h> #include <sys/pipe.h> +#include <sys/uio.h> #include <vm/vm.h> #include <vm/vm_prot.h> |