diff options
Diffstat (limited to 'src/perl')
-rw-r--r-- | src/perl/perl-core.c | 5 | ||||
-rw-r--r-- | src/perl/perl-fe.c | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/perl/perl-core.c b/src/perl/perl-core.c index 793f9375..2f28c718 100644 --- a/src/perl/perl-core.c +++ b/src/perl/perl-core.c @@ -466,3 +466,8 @@ void perl_core_deinit(void) signal_remove("script error", (SIGNAL_FUNC) sig_script_error); PERL_SYS_TERM(); } + +void perl_core_abicheck(int *version) +{ + *version = IRSSI_ABI_VERSION; +} diff --git a/src/perl/perl-fe.c b/src/perl/perl-fe.c index 2abc75c0..04305b63 100644 --- a/src/perl/perl-fe.c +++ b/src/perl/perl-fe.c @@ -278,3 +278,8 @@ void fe_perl_deinit(void) perl_core_print_script_error(TRUE); } + +void fe_perl_abicheck(int *version) +{ + *version = IRSSI_ABI_VERSION; +} |