diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-14 11:00:33 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-01-14 11:00:33 +0000 |
commit | 16302a245c8cb115603e897c978d5145da03033d (patch) | |
tree | 113928643c26ca3738b579f48654863012f8815d /sys/arch/hppa | |
parent | 439e84ca03f77daa0f13a5bdf354cd50550b2cc8 (diff) |
proped type for bootdev
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r-- | sys/arch/hppa/stand/libsa/machdep.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/hppa/stand/libsa/machdep.c b/sys/arch/hppa/stand/libsa/machdep.c index bbc36c8e2b1..bcc6d0b66f8 100644 --- a/sys/arch/hppa/stand/libsa/machdep.c +++ b/sys/arch/hppa/stand/libsa/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.6 2001/06/04 22:25:52 mickey Exp $ */ +/* $OpenBSD: machdep.c,v 1.7 2003/01/14 11:00:32 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -40,7 +40,8 @@ #include "dev_hppa.h" extern struct stable_storage sstor; /* contents of Stable Storage */ -int howto, bootdev; +int howto; +dev_t bootdev; void machdep() |