diff --git a/sys/sys/filedesc.h b/sys/sys/filedesc.h index f8217dd3049f..44cac42872aa 100644 --- a/sys/sys/filedesc.h +++ b/sys/sys/filedesc.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * from: @(#)filedesc.h 7.4 (Berkeley) 5/4/91 - * $Id: filedesc.h,v 1.4 1993/12/23 17:16:00 cgd Exp $ + * $Id: filedesc.h,v 1.5 1993/12/23 17:40:13 cgd Exp $ */ #ifndef _SYS_FILEDESC_H_ @@ -100,8 +100,12 @@ int fdavail __P((struct proc *p, int n)); int falloc __P((struct proc *p, struct file **resultfp, int *resultfd)); struct filedesc *fdcopy __P((struct proc *p)); void fdfree __P((struct proc *p)); +#ifdef notdef int dupfdopen __P((struct filedesc *fdp, int indx, int dfd, int mode, int error)); +#else +int dupfdopen __P((struct filedesc *fdp, int indx, int dfd, int mode)); +#endif #endif #endif /* !_SYS_FILEDESC_H_ */