summaryrefslogtreecommitdiff
path: root/src/perl/xs/Irssi.pm
diff options
context:
space:
mode:
Diffstat (limited to 'src/perl/xs/Irssi.pm')
-rw-r--r--src/perl/xs/Irssi.pm21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/perl/xs/Irssi.pm b/src/perl/xs/Irssi.pm
deleted file mode 100644
index bd6af5fb..00000000
--- a/src/perl/xs/Irssi.pm
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-# Perl interface to irssi functions.
-#
-
-package Irssi;
-
-use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
-
-$VERSION = "0.10";
-
-require Exporter;
-require DynaLoader;
-
-@ISA = qw(Exporter DynaLoader);
-@EXPORT = qw(channel_find_any);
-@EXPORT_OK = qw();
-bootstrap Irssi $VERSION;
-
-1;
-