diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-14 13:22:16 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-10-14 13:22:16 +0000 |
commit | 93d475296b9e85f8446382ec288b6a074815c564 (patch) | |
tree | 726712257105899e2f8c424cd5723f0be1c1bb09 /sys | |
parent | c66f7ac434ba97ee8dcc0013f286550f972124d0 (diff) |
support standalone.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/reboot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/reboot.h b/sys/sys/reboot.h index 0b886f39fa8..e72051e19fd 100644 --- a/sys/sys/reboot.h +++ b/sys/sys/reboot.h @@ -1,4 +1,4 @@ -/* $OpenBSD: reboot.h,v 1.5 1996/06/16 10:27:30 deraadt Exp $ */ +/* $OpenBSD: reboot.h,v 1.6 1996/10/14 13:22:15 mickey Exp $ */ /* $NetBSD: reboot.h,v 1.9 1996/04/22 01:23:25 christos Exp $ */ /* @@ -90,7 +90,7 @@ ((controller) << B_CONTROLLERSHIFT) | ((unit) << B_UNITSHIFT) | \ ((partition) << B_PARTITIONSHIFT) | B_DEVMAGIC) -#ifdef _KERNEL +#if defined(_KERNEL) && !defined(_STANDALONE) __BEGIN_DECLS |