This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
4c230fa7e2fa25a7919ce2445c5f3f309cf5ce8a
[perl5.git] / ext / Devel / PPPort / module3.c
1 /*******************************************************************************
2 *
3 *  Perl/Pollution/Portability
4 *
5 ********************************************************************************
6 *
7 *  $Revision: 5 $
8 *  $Author: mhx $
9 *  $Date: 2005/01/31 08:10:50 +0100 $
10 *
11 ********************************************************************************
12 *
13 *  Version 3.x, Copyright (C) 2004-2005, Marcus Holland-Moritz.
14 *  Version 2.x, Copyright (C) 2001, Paul Marquess.
15 *  Version 1.x, Copyright (C) 1999, Kenneth Albanowski.
16 *
17 *  This program is free software; you can redistribute it and/or
18 *  modify it under the same terms as Perl itself.
19 *
20 *******************************************************************************/
21
22 #include "EXTERN.h"
23 #include "perl.h"
24 #include "XSUB.h"
25
26 #include "ppport.h"
27
28 void call_newCONSTSUB_3(void)
29 {
30   newCONSTSUB(gv_stashpv("Devel::PPPort", FALSE), "test_value_3", newSViv(3));
31 }