summary refs log tree commit diff stats
path: root/plugins/tcl/tclplugin.c
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-11-04 04:22:22 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-11-04 04:22:22 +0100
commit4ec499c2417819a174ebd68529da2a21e9c5c72c (patch)
tree1b305cbf9a80517641c1049d5d45d018d0384784 /plugins/tcl/tclplugin.c
parent0e9658f2aba9deddef640da10ca238dd908fb2ac (diff)
Eliminate warnings due to missing includes
Diffstat (limited to 'plugins/tcl/tclplugin.c')
-rw-r--r--plugins/tcl/tclplugin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/tcl/tclplugin.c b/plugins/tcl/tclplugin.c
index 86e4fc8e..6ec89137 100644
--- a/plugins/tcl/tclplugin.c
+++ b/plugins/tcl/tclplugin.c
@@ -30,6 +30,7 @@ static char RCSID[] = "$Id: tclplugin.c,v 1.65 2012/07/26 20:02:12 mooooooo Exp
 
 #ifdef WIN32
 #include <windows.h>
+#include "../../src/common/typedef.h"
 #define bzero(mem, sz) memset((mem), 0, (sz))
 #define bcopy(src, dest, count) memmove((dest), (src), (count))
 #else