diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1996-12-18 17:58:24 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1996-12-18 17:58:24 +0000 |
| commit | 5778f6adb2c55a26ea0c78b878c414ffde7e12f6 (patch) | |
| tree | ab65e743ef99558ac186c1b6f1d15e6944e48ee8 /sys/ddb/db_command.c | |
| parent | f4af388575740e394dee86803a406573e70507cf (diff) | |
Notes
Diffstat (limited to 'sys/ddb/db_command.c')
| -rw-r--r-- | sys/ddb/db_command.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 3629dafca3bd..c560b2004574 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_command.c,v 1.19 1996/08/27 19:46:28 pst Exp $ + * $Id: db_command.c,v 1.20 1996/09/14 09:13:13 bde Exp $ */ /* @@ -49,6 +49,10 @@ /* * Exported global variables */ +/* + * XXX when db_command is actually used, it will be generated by the linker. + * Then it should be declared extern. + */ struct linker_set db_cmd_set; boolean_t db_cmd_loop_done; db_addr_t db_dot; @@ -56,7 +60,7 @@ jmp_buf db_jmpbuf; db_addr_t db_last_addr; db_addr_t db_prev; db_addr_t db_next; -struct linker_set db_show_cmd_set; +extern struct linker_set db_show_cmd_set; static db_cmdfcn_t db_fncall; static db_cmdfcn_t db_gdb; |
