Fix tests added by #29248 and #29249
Steve Hay [Wed, 15 Nov 2006 17:32:24 +0000 (17:32 +0000)]
p4raw-id: //depot/perl@29284

ext/XS/APItest/APItest.xs
ext/XS/APItest/core_or_not.inc

index 8e9d2ff..827e362 100644 (file)
@@ -51,6 +51,10 @@ my_cxt_setsv_p(SV* sv _pMY_CXT)
 /* from exception.c */
 int exception(int);
 
+/* from core_or_not.inc */
+bool sv_setsv_cow_hashkey_core(void);
+bool sv_setsv_cow_hashkey_notcore(void);
+
 /* A routine to test hv_delayfree_ent
    (which itself is tested by testing on hv_free_ent  */
 
index 6a6a879..8fa3234 100644 (file)
@@ -10,7 +10,8 @@
 #endif
 
 bool
-CAT2(sv_setsv_cow_hashkey_, SUFFIX) (pTHX) {
+CAT2(sv_setsv_cow_hashkey_, SUFFIX) () {
+    dTHX;
     SV *source = newSVpvn_share("pie", 3, 0);
     SV *destination = newSV(0);
     bool result;