Ack, forgot these.  (Below my sig.)

--Brent Dax
[EMAIL PROTECTED]
Configure pumpking for Perl 6

<obra> mmmm. hawt sysadmin chx0rs
<lathos> This is sad. I know of *a* hawt sysamin chx0r.
<obra> I know more than a few.
<lathos> obra: There are two? Are you sure it's not the same one?


--- ..\..\parrot-cvs\parrot\global_setup.c      Tue Jan  8 20:34:54 2002
+++ global_setup.c      Tue Jan  8 16:18:26 2002
@@ -1,7 +1,7 @@
 /* global_setup.c
  *  Copyright: (When this is determined...it will go here)
  *  CVS Info
- *     $Id: global_setup.c,v 1.15 2002/01/07 20:41:23 dan Exp $
+ *     $Id: global_setup.c,v 1.14 2002/01/05 12:35:25 simon Exp $
  *  Overview:
  *      Performs all the global setting up of things. This includes the
  *      (very few) global variables that Parrot totes around
@@ -15,12 +15,13 @@
 #include "parrot/parrot.h"

 /* Needed because this might get compiled before pmcs have been built
*/
 void Parrot_PerlUndef_class_init(void);
 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 Parrot_PerlHash_class_init(void);
+void Parrot_ParrotPointer_class_init(void);

 void
 init_world(void) {
@@ -33,6 +34,7 @@
     Parrot_PerlString_class_init();
     Parrot_PerlArray_class_init();
     Parrot_PerlHash_class_init();
+    Parrot_ParrotPointer_class_init();
 }

 /*
--- ..\..\parrot-cvs\parrot\include\parrot\pmc.h        Sat Jan  5 03:58:54
2002
+++ include\parrot\pmc.h        Tue Jan  8 15:14:14 2002
@@ -20,6 +20,7 @@
     enum_class_PerlString,
     enum_class_PerlArray,
     enum_class_PerlHash,
+    enum_class_ParrotPointer,
     enum_class_max
 };
 VAR_SCOPE VTABLE Parrot_base_vtables[enum_class_max];

Reply via email to