diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-23 06:09:17 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-06-23 06:09:17 +0000 |
commit | eef448cb79176415734d8304512d02ac04dac782 (patch) | |
tree | 657bc4bbbe305839dd03486a14a7f9ab2c367d50 /sys/kern | |
parent | bee17a6deff3ef26ee6cdaad4ce907a782e2ba9c (diff) |
pipe_stat isn't referenced from outside sys_pipe.c anymore
Diffstat (limited to 'sys/kern')
-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 85f38a06d4b..73e0bc64afe 100644 --- a/sys/kern/sys_pipe.c +++ b/sys/kern/sys_pipe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sys_pipe.c,v 1.33 2001/06/23 06:04:34 art Exp $ */ +/* $OpenBSD: sys_pipe.c,v 1.34 2001/06/23 06:09:16 art Exp $ */ /* * Copyright (c) 1996 John S. Dyson @@ -72,6 +72,7 @@ int pipe_close __P((struct file *, struct proc *)); int pipe_select __P((struct file *, int which, struct proc *)); int pipe_kqfilter __P((struct file *fp, struct knote *kn)); int pipe_ioctl __P((struct file *, u_long, caddr_t, struct proc *)); +int pipe_stat __P((struct file *fp, struct stat *ub, struct proc *p)); static struct fileops pipeops = { pipe_read, pipe_write, pipe_ioctl, pipe_select, pipe_kqfilter, |