* config/tc-alpha.c (O_samegp): New.
[external/binutils.git] / gdb / tui / tuiDataWin.c
index d7ad6b4..cb670ed 100644 (file)
    Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
+/* If we need <curses.h>, we must include it before we get "bfd.h".  */
+#include "config.h"
+#ifdef HAVE_NCURSES_H       
+#include <ncurses.h>
+#else
+#ifdef HAVE_CURSES_H
+#include <curses.h>
+#endif
+#endif
+
 #include "defs.h"
 #include "tui.h"
 #include "tuiData.h"
+#include "tuiGeneralWin.h"
 #include "tuiRegs.h"
 
 
@@ -297,22 +308,6 @@ tuiCheckDataValues (struct frame_info *frame)
 
 
 /*
-   ** tui_vCheckDataValues().
-   **        Function to check the data values and hilite any that have
-   **        changed with args in a va_list
- */
-void
-tui_vCheckDataValues (va_list args)
-{
-  struct frame_info *frame = va_arg (args, struct frame_info *);
-
-  tuiCheckDataValues (frame);
-
-  return;
-}                              /* tui_vCheckDataValues */
-
-
-/*
    ** tuiVerticalDataScroll()
    **        Scroll the data window vertically forward or backward.
  */