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-pipe.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gdb/ser-pipe.c') diff --git a/gdb/ser-pipe.c b/gdb/ser-pipe.c index 3e23287..bca0e54 100644 --- a/gdb/ser-pipe.c +++ b/gdb/ser-pipe.c @@ -34,8 +34,8 @@ #include -static int pipe_open (serial_t scb, const char *name); -static void pipe_close (serial_t scb); +static int pipe_open (struct serial *scb, const char *name); +static void pipe_close (struct serial *scb); extern void _initialize_ser_pipe (void); @@ -47,7 +47,7 @@ struct pipe_state /* Open up a raw pipe */ static int -pipe_open (serial_t scb, const char *name) +pipe_open (struct serial *scb, const char *name) { #if !HAVE_SOCKETPAIR return -1; @@ -117,7 +117,7 @@ pipe_open (serial_t scb, const char *name) } static void -pipe_close (serial_t scb) +pipe_close (struct serial *scb) { struct pipe_state *state = scb->state; if (state != NULL) -- cgit v1.1