This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
APItest/t/utf8_warn_base.pl: Move some tests in the file
[perl5.git] / ext / XS-APItest / XSUB-undef-XS_VERSION.xs
CommitLineData
7b20c7cd
NC
1#include "EXTERN.h"
2#include "perl.h"
3
4/* We have to be in a different .xs so that we can do this: */
5
6#undef XS_VERSION
7#include "XSUB.h"
8
9/* This can't be "MODULE = XS::APItest" as then we get duplicate bootstraps. */
10MODULE = XS::APItest::XSUB PACKAGE = XS::APItest::XSUB
11
12PROTOTYPES: DISABLE
13
9777c6aa
S
14EXPORT_XSUB_SYMBOLS: ENABLE
15
7b20c7cd
NC
16void
17XS_VERSION_undef(...)
18 PPCODE:
19 XS_VERSION_BOOTCHECK;
20 XSRETURN_EMPTY;