blob: e5f4ef607ce666092a1c219650e998ee67027e12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*******************************************************************************
*
* Perl/Pollution/Portability
*
********************************************************************************
*
* $Revision: 12 $
* $Author: mhx $
* $Date: 2009/01/18 14:10:49 +0100 $
*
********************************************************************************
*
* Version 3.x, Copyright (C) 2004-2009, Marcus Holland-Moritz.
* Version 2.x, Copyright (C) 2001, Paul Marquess.
* Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
*
* This program is free software; you can redistribute it and/or
* modify it under the same terms as Perl itself.
*
*******************************************************************************/
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#ifndef PATCHLEVEL
#include "patchlevel.h"
#endif
#define NEED_newCONSTSUB_GLOBAL
#define NEED_PL_signals_GLOBAL
#define NEED_PL_parser
#define DPPP_PL_parser_NO_DUMMY
#include "ppport.h"
void call_newCONSTSUB_2(void)
{
newCONSTSUB(gv_stashpv("Devel::PPPort", FALSE), "test_value_2", newSViv(2));
}
U32 get_PL_signals_2(void)
{
return PL_signals;
}
int no_dummy_parser_vars(int check)
{
if (check == 0 || PL_parser)
{
line_t volatile my_copline;
line_t volatile *my_p_copline;
my_copline = PL_copline;
my_p_copline = &PL_copline;
PL_copline = my_copline;
PL_copline = *my_p_copline;
return 1;
}
return 0;
}
|