summaryrefslogtreecommitdiff
path: root/sys/stand
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-09-17 19:55:37 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-09-17 19:55:37 +0000
commit57960caf83bdc7fd8bd65fed2df8620e0fc06001 (patch)
treee5cd3508a52aed6ba5397c3a6a3d9b9fb38f0802 /sys/stand
parentca49c90ae40671801763777b986e63d599925c7b (diff)
regs command is MD
Diffstat (limited to 'sys/stand')
-rw-r--r--sys/stand/boot/cmd.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/sys/stand/boot/cmd.c b/sys/stand/boot/cmd.c
index 4457f9fe190..55d8751c246 100644
--- a/sys/stand/boot/cmd.c
+++ b/sys/stand/boot/cmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd.c,v 1.31 1997/09/02 21:02:15 mickey Exp $ */
+/* $OpenBSD: cmd.c,v 1.32 1997/09/17 19:55:34 mickey Exp $ */
/*
* Copyright (c) 1997 Michael Shalayeff
@@ -34,7 +34,6 @@
#include <sys/param.h>
#include <libsa.h>
-#include <debug.h>
#include <sys/reboot.h>
#include "cmd.h"
@@ -48,9 +47,6 @@ static int Xdevice __P((void));
#ifdef DEBUG
static int Xdebug __P((void));
#endif
-#ifdef DUMP_REGS
-static int Xregs __P((void));
-#endif
static int Xhelp __P((void));
static int Ximage __P((void));
static int Xls __P((void));
@@ -86,9 +82,6 @@ static const struct cmd_table cmd_table[] = {
{"machine",CMDT_MDC, Xmachine},
#endif
{"reboot", CMDT_CMD, Xreboot},
-#ifdef DUMP_REGS
- {"regs", CMDT_CMD, Xregs},
-#endif
{"set", CMDT_SET, Xset},
{"time", CMDT_CMD, Xtime},
{NULL, 0},
@@ -609,11 +602,3 @@ Xreboot()
return 0; /* just in case */
}
-#ifdef DUMP_REGS
-static int
-Xregs()
-{
- DUMP_REGS;
- return 0;
-}
-#endif