From b5ce335e1c227761ce8eb793339aebcda57d6c48 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Sat, 9 Dec 2000 12:34:14 +0000 Subject: [PATCH] change the type of e_syscall in struct emul to void (*e_syscall) __P((void)) since it's not uniform between ports --- sys/sys/proc.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 3ea2741d99d1..15f1d9f0805f 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -1,4 +1,4 @@ -/* $NetBSD: proc.h,v 1.114 2000/12/09 07:06:52 mycroft Exp $ */ +/* $NetBSD: proc.h,v 1.115 2000/12/09 12:34:14 jdolecek Exp $ */ /*- * Copyright (c) 1986, 1989, 1991, 1993 @@ -83,7 +83,6 @@ struct pgrp { */ struct exec_package; struct ps_strings; -struct trapframe; struct emul { char e_name[8]; /* Symbolic name */ @@ -105,7 +104,7 @@ struct emul { int e_flags; /* Miscellaneous flags */ /* Syscall handling function */ - void (*e_syscall) __P((struct trapframe *)); + void (*e_syscall) __P((void)); };