From 819cc324665b3ac1842b105d906308f7ab692a76 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Wed, 11 Jul 2001 17:52:32 +0000 Subject: s/typedef serial_t/struct serial */ --- gdb/ser-tcp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gdb/ser-tcp.c') diff --git a/gdb/ser-tcp.c b/gdb/ser-tcp.c index 30281cd..fe5cb44 100644 --- a/gdb/ser-tcp.c +++ b/gdb/ser-tcp.c @@ -34,15 +34,15 @@ #include #include "gdb_string.h" -static int tcp_open (serial_t scb, const char *name); -static void tcp_close (serial_t scb); +static int tcp_open (struct serial *scb, const char *name); +static void tcp_close (struct serial *scb); void _initialize_ser_tcp (void); /* Open up a raw tcp socket */ static int -tcp_open (serial_t scb, const char *name) +tcp_open (struct serial *scb, const char *name) { char *port_str; int port; @@ -122,7 +122,7 @@ tcp_open (serial_t scb, const char *name) } static void -tcp_close (serial_t scb) +tcp_close (struct serial *scb) { if (scb->fd < 0) return; -- cgit v1.1