* gdb.texinfo (Go): Fix thinko.
[deliverable/binutils-gdb.git] / gdb / ser-base.c
index 8f014d0d9c2287cc5f69b79cad59f6aedee50ef9..b4399d0c4ba7a6e104b8cc8e8a4938a076cc0c88 100644 (file)
@@ -1,8 +1,7 @@
 /* Generic serial interface functions.
 
-   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2003,
-   2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
-   Free Software Foundation, Inc.
+   Copyright (C) 1992-1996, 1998-2001, 2003-2012 Free Software
+   Foundation, Inc.
 
    This file is part of GDB.
 
@@ -463,6 +462,13 @@ ser_base_get_tty_state (struct serial *scb)
   return (serial_ttystate) XMALLOC (int);
 }
 
+serial_ttystate
+ser_base_copy_tty_state (struct serial *scb, serial_ttystate ttystate)
+{
+  /* Allocate another dummy.  */
+  return (serial_ttystate) XMALLOC (int);
+}
+
 int
 ser_base_set_tty_state (struct serial *scb, serial_ttystate ttystate)
 {
This page took 0.029404 seconds and 4 git commands to generate.