This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
move files around for s/cygwin32/cygwin/ renaming
[perl5.git] / mg.h
diff --git a/mg.h b/mg.h
index ebd47c3..6a8afdc 100644 (file)
--- a/mg.h
+++ b/mg.h
 STRUCT_MGVTBL_DEFINITION;
 #else
 struct mgvtbl {
-    int                (CPERLscope(*svt_get))  (SV *sv, MAGIC* mg);
-    int                (CPERLscope(*svt_set))  (SV *sv, MAGIC* mg);
-    U32                (CPERLscope(*svt_len))  (SV *sv, MAGIC* mg);
-    int                (CPERLscope(*svt_clear))        (SV *sv, MAGIC* mg);
-    int                (CPERLscope(*svt_free)) (SV *sv, MAGIC* mg);
+    int                (CPERLscope(*svt_get))  (pTHX_ SV *sv, MAGIC* mg);
+    int                (CPERLscope(*svt_set))  (pTHX_ SV *sv, MAGIC* mg);
+    U32                (CPERLscope(*svt_len))  (pTHX_ SV *sv, MAGIC* mg);
+    int                (CPERLscope(*svt_clear))(pTHX_ SV *sv, MAGIC* mg);
+    int                (CPERLscope(*svt_free)) (pTHX_ SV *sv, MAGIC* mg);
 };
 #endif