diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 18:46:51 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 18:46:51 +0000 |
commit | 05f4c957e914e44927c477abcd42150e5fade81f (patch) | |
tree | 42b9120b46b7b8afcd9d8d254b5b8ea2fd92a9b8 | |
parent | 22474403246684c418d1e8f463b1440dc07a5fbb (diff) |
fix proto for sysarch()
-rw-r--r-- | sys/arch/i386/include/sysarch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/sysarch.h b/sys/arch/i386/include/sysarch.h index e2f3dfccc23..cae749a2b53 100644 --- a/sys/arch/i386/include/sysarch.h +++ b/sys/arch/i386/include/sysarch.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sysarch.h,v 1.4 2002/03/14 01:26:33 millert Exp $ */ +/* $OpenBSD: sysarch.h,v 1.5 2004/09/15 18:46:50 deraadt Exp $ */ /* $NetBSD: sysarch.h,v 1.8 1996/01/08 13:51:44 mycroft Exp $ */ #ifndef _I386_SYSARCH_H_ @@ -44,7 +44,7 @@ int i386_set_ldt(int, union descriptor *, int); int i386_iopl(int); int i386_get_ioperm(u_long *); int i386_set_ioperm(u_long *); -int sysarch(int, char *); +int sysarch(int, void *); #endif #endif /* !_I386_SYSARCH_H_ */ |