This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ext/XS-APItest: Remove unused variable decl.
[perl5.git] / ext / XS-APItest / XSUB-redefined-macros.xs
CommitLineData
f9cc56fa
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#define XS_VERSION ""
88c4b02d
NC
8#undef PERL_API_VERSION_STRING
9#define PERL_API_VERSION_STRING "1.0.16"
f9cc56fa
NC
10#include "XSUB.h"
11
12/* This can't be "MODULE = XS::APItest" as then we get duplicate bootstraps. */
13MODULE = XS::APItest::XSUB1 PACKAGE = XS::APItest::XSUB
14
15PROTOTYPES: DISABLE
16
9777c6aa
S
17EXPORT_XSUB_SYMBOLS: ENABLE
18
f9cc56fa
NC
19void
20XS_VERSION_empty(...)
21 PPCODE:
22 XS_VERSION_BOOTCHECK;
23 XSRETURN_EMPTY;
88c4b02d
NC
24
25void
26XS_APIVERSION_invalid(...)
27 PPCODE:
28 XS_APIVERSION_BOOTCHECK;
29 XSRETURN_EMPTY;