summaryrefslogtreecommitdiff
path: root/src/plugins/scripts/perl
diff options
context:
space:
mode:
authorEmmanuel Bouthenot <kolter@openics.org>2006-10-10 18:08:48 +0000
committerEmmanuel Bouthenot <kolter@openics.org>2006-10-10 18:08:48 +0000
commit5d70f20c27bb8de176d2ea8d278453d608d210e9 (patch)
tree40acc526af0c249df158d68059d85379bab67c3b /src/plugins/scripts/perl
parent71d5c65e28e9a735b18a000cd1ee19e7f67b4db9 (diff)
downloadweechat-5d70f20c27bb8de176d2ea8d278453d608d210e9.zip
adding some missing headers in plugins
Diffstat (limited to 'src/plugins/scripts/perl')
-rw-r--r--src/plugins/scripts/perl/weechat-perl.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/plugins/scripts/perl/weechat-perl.c b/src/plugins/scripts/perl/weechat-perl.c
index 596a1126e..906492592 100644
--- a/src/plugins/scripts/perl/weechat-perl.c
+++ b/src/plugins/scripts/perl/weechat-perl.c
@@ -19,12 +19,22 @@
/* weechat-perl.c: Perl plugin support for WeeChat */
+#undef _
-#include <stdlib.h>
#include <EXTERN.h>
#include <perl.h>
#include <XSUB.h>
-#undef _
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <stdarg.h>
+#include <time.h>
+
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
#include "../../weechat-plugin.h"
#include "../weechat-script.h"