diff options
author | Stu Grossman <grossman@cygnus> | 1999-01-11 21:51:39 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1999-01-11 21:51:39 +0000 |
commit | 4cffc916c155b97cf5c32954c1610b69a6e0832d (patch) | |
tree | e9d6d2785887199c9c06be8699d25d977f30ac23 /gdb/stack.c | |
parent | 962636fda2375024914afe4e735bcbdc40ef7087 (diff) | |
download | gdb-4cffc916c155b97cf5c32954c1610b69a6e0832d.zip gdb-4cffc916c155b97cf5c32954c1610b69a6e0832d.tar.gz gdb-4cffc916c155b97cf5c32954c1610b69a6e0832d.tar.bz2 |
* dwarf2read.c (dump_die): Change stderr gdb_stderr.
* expprint.c (print_subexp): fprintf => fprintf_unfiltered.
* jv-typeprint.c (java_type_print_base): fputs => fputs_filtered.
* stack.c (struct function_bounds): Remove superfluous `typedef'.
* symfile.c (list_overlays_command): stdout => gdb_stdout.
* symmisc.c (maintenance_check_symtabs): stdout => gdb_stdout.
* utils.c (print_spaces): Make more efficient.
Diffstat (limited to 'gdb/stack.c')
-rw-r--r-- | gdb/stack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/stack.c b/gdb/stack.c index 685d491..e0bf7dd 100644 --- a/gdb/stack.c +++ b/gdb/stack.c @@ -1839,7 +1839,7 @@ return_command (retval_exp, from_tty) /* Sets the scope to input function name, provided that the function is within the current stack frame */ -typedef struct function_bounds +struct function_bounds { CORE_ADDR low, high; }; |