*** ..\..\Org\parrot\classes\intclass.c	Fri Nov 02 14:00:02 2001
--- classes\intclass.c	Sun Nov 04 16:07:17 2001
***************
*** 12,23 ****
--- 12,26 ----
  #include "parrot/parrot.h"
  
  static INTVAL Parrot_int_type (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static STRING *Parrot_int_name (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static PMC* Parrot_int_new (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static void Parrot_int_clone (struct Parrot_Interp *interpreter, PMC* pmc, PMC* dest) {
***************
*** 27,56 ****
--- 30,67 ----
  }
  
  static BOOLVAL Parrot_int_move_to (struct Parrot_Interp *interpreter, PMC* pmc, void * destination) {
+ 	return FALSE;
  }
  
  static INTVAL Parrot_int_real_size (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static void Parrot_int_destroy (struct Parrot_Interp *interpreter, PMC* pmc) {
  }
  
  static INTVAL Parrot_int_get_integer (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static FLOATVAL Parrot_int_get_number (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static STRING *Parrot_int_get_string (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static BOOLVAL Parrot_int_get_bool (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static void* Parrot_int_get_value (struct Parrot_Interp *interpreter, PMC* pmc) {
+ 	return 0;
  }
  
  static BOOLVAL Parrot_int_is_same (struct Parrot_Interp *interpreter, PMC* pmc, PMC* pmc2) {
+ 	return FALSE;
  }
  
  static void Parrot_int_set_integer_1 (struct Parrot_Interp *interpreter, PMC* pmc, INTVAL integer) {
