$NetBSD: patch-ac,v 1.5 2000/07/28 20:30:11 jlam Exp $

--- dialog.h.orig	Fri Aug 18 07:35:06 1995
+++ dialog.h	Fri Jul 28 15:30:22 2000
@@ -28,8 +28,12 @@
 #ifdef ultrix
 #include <cursesX.h>
 #else
+#if defined(HAVE_TRUE_NCURSES)
+#include <ncurses.h>
+#else
 #include <curses.h>
 #endif
+#endif
 
 /*
  * Change these if you want
@@ -42,6 +46,7 @@
 #define TAB 9
 #define MAX_LEN 2048
 #define BUF_SIZE (10*1024)
+#define MIN_DIALOG_WIDTH 24
 #define MIN(x,y) (x < y ? x : y)
 #define MAX(x,y) (x > y ? x : y)
 
@@ -150,6 +155,9 @@
 #ifdef HAVE_NCURSES
 void draw_shadow (WINDOW * win, int y, int x, int height, int width);
 #endif
+
+int strheight (const char *p);
+int strwidth (const char *p);
 
 int dialog_yesno (const char *title, const char *prompt, int height, int width);
 int dialog_msgbox (const char *title, const char *prompt, int height,
