fix that last (for now)

This commit is contained in:
cgd 1993-12-23 17:40:13 +00:00
parent 76cce4cfdd
commit 78cc61f8ef
1 changed files with 5 additions and 1 deletions

View File

@ -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_ */