diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-10 21:06:34 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-10 21:06:34 +0000 |
commit | ba3a85231b0063f457e88e57edd12f244b6ceabc (patch) | |
tree | 8447c9eacb718c98ada7feed4a96cd80fa72866e /gdb/monitor.c | |
parent | 2aa830e4a6c1e6f378b87ed37a5a239325a59982 (diff) | |
download | gdb-ba3a85231b0063f457e88e57edd12f244b6ceabc.zip gdb-ba3a85231b0063f457e88e57edd12f244b6ceabc.tar.gz gdb-ba3a85231b0063f457e88e57edd12f244b6ceabc.tar.bz2 |
* remote-utils.h (struct serial): Declare as opaque. Remove
include of "serial.h".
* Makefile.in (remote_utils_h): Update.
* monitor.h (struct serial): Declare as opaque. Remove include of
"serial.h".
(struct monitor_ops): Replace serial_t with `struct serial *'.
* monitor.c (monitor_desc): Ditto.
Diffstat (limited to 'gdb/monitor.c')
-rw-r--r-- | gdb/monitor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/monitor.c b/gdb/monitor.c index 1174dd9..6e601b0 100644 --- a/gdb/monitor.c +++ b/gdb/monitor.c @@ -119,7 +119,7 @@ static CORE_ADDR *breakaddr; that monitor_open knows that we don't have a file open when the program starts. */ -static serial_t monitor_desc = NULL; +static struct serial *monitor_desc = NULL; /* Pointer to regexp pattern matching data */ |