summaryrefslogtreecommitdiff
path: root/src/window.c
diff options
context:
space:
mode:
authorAndrew Innes <andrewi@gnu.org>2000-02-06 23:37:49 +0000
committerAndrew Innes <andrewi@gnu.org>2000-02-06 23:37:49 +0000
commit8f23f280539076bf81fef5b7cbea963050715db0 (patch)
treefba41501aaaba1a020fdd17e5fc0f0a570310d8b /src/window.c
parent0052a264ee303067f580920cd1487b120886bd46 (diff)
downloademacs-8f23f280539076bf81fef5b7cbea963050715db0.tar.gz
[WINDOWSNT]: Include w32term.h.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index d8ae5258289..809641dbc13 100644
--- a/src/window.c
+++ b/src/window.c
@@ -36,6 +36,9 @@ Boston, MA 02111-1307, USA. */
#ifdef HAVE_X_WINDOWS
#include "xterm.h"
#endif /* HAVE_X_WINDOWS */
+#ifdef WINDOWSNT
+#include "w32term.h"
+#endif
#ifndef max
#define max(a, b) ((a) < (b) ? (b) : (a))