cvsuser 04/12/17 06:32:44
Modified: dynclasses pybuiltin.pmc
Log:
Eliminate compile time warning.
Revision Changes Path
1.24 +3 -2 parrot/dynclasses/pybuiltin.pmc
Index: pybuiltin.pmc
===================================================================
RCS file: /cvs/public/parrot/dynclasses/pybuiltin.pmc,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- pybuiltin.pmc 16 Dec 2004 10:37:08 -0000 1.23
+++ pybuiltin.pmc 17 Dec 2004 14:32:44 -0000 1.24
@@ -1,6 +1,6 @@
/*
Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
-$Id: pybuiltin.pmc,v 1.23 2004/12/16 10:37:08 leo Exp $
+$Id: pybuiltin.pmc,v 1.24 2004/12/17 14:32:44 rubys Exp $
=head1 NAME
@@ -44,11 +44,12 @@
#define VTABLE_cmp(i,l,r) mmd_dispatch_i_pp(i,l,r,MMD_CMP)
PMC* Parrot_lib_python_group_init(Interp* interpreter, PMC *lib_pmc);
+void Parrot_PyBuiltin___load__(Interp* interpreter, PMC* pmc);
PMC*
Parrot_lib_python_group_init(Interp* interpreter, PMC *lib_pmc)
{
- Parrot_PyBuiltin___load__(interpreter);
+ Parrot_PyBuiltin___load__(interpreter, NULL);
return lib_pmc;
}
pmclass PyBuiltin dynpmc group python_group {