cvsuser 03/10/13 09:43:15
Modified: include/parrot objects.h
Log:
remove a warnig about missing prototype
Revision Changes Path
1.4 +2 -1 parrot/include/parrot/objects.h
Index: objects.h
===================================================================
RCS file: /cvs/public/parrot/include/parrot/objects.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -w -r1.3 -r1.4
--- objects.h 9 Oct 2003 13:19:03 -0000 1.3
+++ objects.h 13 Oct 2003 16:43:15 -0000 1.4
@@ -1,7 +1,7 @@
/* objects.h
* Copyright: 2001-2003 The Perl Foundation. All Rights Reserved.
* CVS Info
- * $Id: objects.h,v 1.3 2003/10/09 13:19:03 dan Exp $
+ * $Id: objects.h,v 1.4 2003/10/13 16:43:15 boemmels Exp $
* Overview:
* Parrot class and object header stuff
* Data Structure and Algorithms:
@@ -18,6 +18,7 @@
PMC *Parrot_single_subclass(Parrot_Interp, PMC *, STRING *);
PMC *Parrot_new_class(Parrot_Interp, STRING *);
PMC *Parrot_add_parent(Parrot_Interp, PMC *, PMC *);
+PMC *Parrot_remove_parent(Parrot_Interp, PMC *, PMC *);
PMC *Parrot_multi_subclass(Parrot_Interp, PMC *, STRING *);
#endif