Index: global_setup.c
===================================================================
RCS file: /cvs/public/parrot/global_setup.c,v
retrieving revision 1.11
diff -c -r1.11 global_setup.c
*** global_setup.c 18 Dec 2001 07:05:00 -0000 1.11
--- global_setup.c 1 Jan 2002 03:32:01 -0000
***************
*** 14,21 ****
#define INSIDE_GLOBAL_SETUP
#include "parrot/parrot.h"
void
! init_world() {
string_init(); /* Set up the string subsystem */
/* Call base vtable class constructor methods! */
--- 14,27 ----
#define INSIDE_GLOBAL_SETUP
#include "parrot/parrot.h"
+ /* Needed because this might get compiled before pmcs have been built */
+ void Parrot_PerlInt_class_init(void);
+ void Parrot_PerlNum_class_init(void);
+ void Parrot_PerlString_class_init(void);
+ void Parrot_PerlArray_class_init(void);
+
void
! init_world(void) {
string_init(); /* Set up the string subsystem */
/* Call base vtable class constructor methods! */