diff options
author | Jacques Vidrine <nectar@FreeBSD.org> | 2004-01-10 18:37:11 +0000 |
---|---|---|
committer | Jacques Vidrine <nectar@FreeBSD.org> | 2004-01-10 18:37:11 +0000 |
commit | 1d89178762667aa5f23e71da6af7fd37e70bd325 (patch) | |
tree | 0a7f8d22b051ad5cd9834aa2e0a1680a626975cb | |
parent | 85495c72ff68618f82c0ceb14aee2a3ffa1e6500 (diff) |
Notes
-rw-r--r-- | lib/libio/alpha_sethae.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libio/alpha_sethae.c b/lib/libio/alpha_sethae.c index 00b23d0eb3db..206b6ddac4d2 100644 --- a/lib/libio/alpha_sethae.c +++ b/lib/libio/alpha_sethae.c @@ -31,8 +31,6 @@ __FBSDID("$FreeBSD$"); #include <sys/types.h> #include <machine/sysarch.h> -extern int sysarch(int, char *); - struct parms { u_int64_t hae; }; @@ -44,5 +42,5 @@ alpha_sethae(u_int64_t hae) p.hae = hae; - return (sysarch(ALPHA_SETHAE, (char *)&p)); + return (sysarch(ALPHA_SETHAE, &p)); } |