From 65776a5a0cf074662a488c789bcbc08c41a270e4 Mon Sep 17 00:00:00 2001 From: thorpej Date: Wed, 5 May 1999 19:52:20 +0000 Subject: [PATCH] Make dupfdopen() take a proc * instead of a filedesc *. --- sys/sys/filedesc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/filedesc.h b/sys/sys/filedesc.h index 53c4beedf6b8..9121ffce13aa 100644 --- a/sys/sys/filedesc.h +++ b/sys/sys/filedesc.h @@ -1,4 +1,4 @@ -/* $NetBSD: filedesc.h,v 1.17 1999/04/30 18:42:58 thorpej Exp $ */ +/* $NetBSD: filedesc.h,v 1.18 1999/05/05 19:52:20 thorpej Exp $ */ /* * Copyright (c) 1990, 1993 @@ -101,7 +101,7 @@ struct filedesc0 { /* * Kernel global variables and routines. */ -int dupfdopen __P((struct filedesc *fdp, int indx, int dfd, int mode, +int dupfdopen __P((struct proc *p, int indx, int dfd, int mode, int error)); int fdalloc __P((struct proc *p, int want, int *result)); int fdavail __P((struct proc *p, int n));