Author: chromatic
Date: Sun Mar 30 18:49:26 2008
New Revision: 26649

Modified:
   trunk/languages/regex/pmc/match.pmc
   trunk/languages/regex/pmc/matchrange.pmc

Log:
[regex] Made PMCs use parrot/embed.h instead of parrot/parrot.h (RT #39043).

Modified: trunk/languages/regex/pmc/match.pmc
==============================================================================
--- trunk/languages/regex/pmc/match.pmc (original)
+++ trunk/languages/regex/pmc/match.pmc Sun Mar 30 18:49:26 2008
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2004-2007, The Perl Foundation.
+Copyright (C) 2004-2008, The Perl Foundation.
 $Id$
 
 =head1 NAME
@@ -23,7 +23,7 @@
 */
 
 #include <assert.h>
-#include "parrot/parrot.h"
+#include "parrot/embed.h"
 
 extern int MatchRange_type_id;
 

Modified: trunk/languages/regex/pmc/matchrange.pmc
==============================================================================
--- trunk/languages/regex/pmc/matchrange.pmc    (original)
+++ trunk/languages/regex/pmc/matchrange.pmc    Sun Mar 30 18:49:26 2008
@@ -31,7 +31,7 @@
 
 */
 
-#include "parrot/parrot.h"
+#include "parrot/embed.h"
 
 #define RANGE_START(pmc) PMC_int_val(pmc)
 #define RANGE_END(pmc) PMC_int_val2(pmc)

Reply via email to