From 1a52d4a8178c1414660265920588ae40ca618cb8 Mon Sep 17 00:00:00 2001 From: Jeffrey Hsu Date: Mon, 11 Mar 1996 02:23:33 +0000 Subject: [PATCH] Merge in Lite2: add function prototype. Note: Lite2 struct sysent changes need to go in FreeBSD sysent.h instead. Leave out prototype for nosys() until convert makesyscalls.sh over to Lite2 format, if we ever do so. Reviewed by: davidg & bde --- sys/sys/systm.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/sys/systm.h b/sys/sys/systm.h index b9ea32e8b0db..d30fb06d6b70 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -35,8 +35,8 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * @(#)systm.h 8.4 (Berkeley) 2/23/94 - * $Id: systm.h,v 1.35 1996/01/29 03:20:44 gibbs Exp $ + * @(#)systm.h 8.7 (Berkeley) 3/29/95 + * $Id: systm.h,v 1.38 1996/02/25 09:21:55 hsu Exp $ */ #ifndef _SYS_SYSTM_H_ @@ -107,6 +107,7 @@ extern int boothowto; /* reboot flags, from console subsystem */ */ int nullop __P((void)); int eopnotsupp __P((void)); +int einval __P((void)); int seltrue __P((dev_t dev, int which, struct proc *p)); int ureadc __P((int, struct uio *)); void *hashinit __P((int count, int type, u_long *hashmask));