aboutsummaryrefslogtreecommitdiff
path: root/src/include/command.h
diff options
context:
space:
mode:
authorGareth McMullin2012-06-27 21:26:08 +1200
committerGareth McMullin2012-06-27 21:26:08 +1200
commit466bb66424a8a44581ae2f9defbe95aa5384c395 (patch)
treeac1ef277e96e3522907596182ce701ca0bd3468b /src/include/command.h
parent4581da20342c459855a4b585e72746df56e22e26 (diff)
Made cur_target, last_target static in gdb_main.c.
Added target destroy notify mechanism.
Diffstat (limited to 'src/include/command.h')
-rw-r--r--src/include/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/command.h b/src/include/command.h
index a44ed13..32b0d7b 100644
--- a/src/include/command.h
+++ b/src/include/command.h
@@ -24,7 +24,7 @@
#include "general.h"
#include "target.h"
-int command_process(char *cmd);
+int command_process(target *t, char *cmd);
typedef bool (*cmd_handler)(target *t, int argc, const char **argv);
struct command_s {