diff options
author | 2004-09-15 18:46:50 +0000 | |
---|---|---|
committer | 2004-09-15 18:46:50 +0000 | |
commit | c19e2b63c44013baa809e885a852e2d0f455e212 (patch) | |
tree | ed59b304c7173fbe97f8f55ada1bac24a2de131c | |
parent | scratch that do { } while (0) wrapper in this case (diff) | |
download | wireguard-openbsd-c19e2b63c44013baa809e885a852e2d0f455e212.tar.xz wireguard-openbsd-c19e2b63c44013baa809e885a852e2d0f455e212.zip |
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_ */ |