dan         01/09/12 11:23:32

  Modified:    .        interpreter.h parrot.h
  Log:
  Quick placeholder entry for string function tables
  
  Revision  Changes    Path
  1.3       +1 -0      parrot/interpreter.h
  
  Index: interpreter.h
  ===================================================================
  RCS file: /home/perlcvs/parrot/interpreter.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -w -r1.2 -r1.3
  --- interpreter.h     2001/09/07 15:23:39     1.2
  +++ interpreter.h     2001/09/12 18:23:31     1.3
  @@ -28,6 +28,7 @@
                                           // interpreter's arena
     IV *(*(*opcode_funcs)[2048])();                    // Opcode
                                          // function table
  +  STRING_FUNCS *(*(*string_funcs)[64])();  // String function table
   };
   
   struct Perl_Interp *make_interpreter();
  
  
  
  1.4       +2 -0      parrot/parrot.h
  
  Index: parrot.h
  ===================================================================
  RCS file: /home/perlcvs/parrot/parrot.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -w -r1.3 -r1.4
  --- parrot.h  2001/09/10 21:47:26     1.3
  +++ parrot.h  2001/09/12 18:23:31     1.4
  @@ -44,6 +44,8 @@
   
   typedef struct PMC PMC;
   
  +typedef void STRING_FUNCS;
  +
   #include "global_setup.h"
   #include "string.h"
   #include "interpreter.h"
  
  
  

Reply via email to