From 14b6cc29b8e357fa750954efa0ee58c4ad16c569 Mon Sep 17 00:00:00 2001
From: anon <anon@anon.anon>
Date: Fri, 24 Nov 2023 16:37:07 +0100
Subject: [PATCH] cleared implicit declaration warning

---
 source/mouse.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/source/mouse.c b/source/mouse.c
index 77299e6..620e2d3 100644
--- a/source/mouse.c
+++ b/source/mouse.c
@@ -41,6 +41,8 @@ extern int LINES;
 
 #include "global.h"
 
+#include <ncurses.h>
+
 bool mouse = false;				/* mouse interface */
 
 #ifdef UNIXPC					/* build command requires #ifdef instead of #if */