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 | |
parent | bee17a6deff3ef26ee6cdaad4ce907a782e2ba9c (diff) |
pipe_stat isn't referenced from outside sys_pipe.c anymore
-rw-r--r-- | sys/kern/sys_pipe.c | 3 | ||||
-rw-r--r-- | sys/sys/pipe.h | 3 |
2 files changed, 3 insertions, 3 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, diff --git a/sys/sys/pipe.h b/sys/sys/pipe.h index 224598278fa..2aec76962cb 100644 --- a/sys/sys/pipe.h +++ b/sys/sys/pipe.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pipe.h,v 1.7 2001/06/23 06:04:33 art Exp $ */ +/* $OpenBSD: pipe.h,v 1.8 2001/06/23 06:09:16 art Exp $ */ /* * Copyright (c) 1996 John S. Dyson @@ -85,7 +85,6 @@ struct pipe { }; #ifdef _KERNEL -int pipe_stat __P((struct file *fp, struct stat *ub, struct proc *p)); void pipe_init __P((void)); #endif /* _KERNEL */ |