summaryrefslogtreecommitdiff
path: root/mg.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-05-29 11:05:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-05-29 11:05:50 +0000
commit26ca90b622247714396690e385249f8ca1417aa0 (patch)
tree520b78b2e1d8b3429b4833f9ee8a1465d8e6abc2 /mg.h
parent8a29a26d101c2a07bdfaee1b99a0c73504c5cbe4 (diff)
parent30ac6d9be367ff08cc605906fbe575fb1ca35fdf (diff)
downloadperl-26ca90b622247714396690e385249f8ca1417aa0.tar.gz
[win32] reverse integrate asperl branch contents (phew!)
- various fixups to ensure AS stuff does no harm - adjust win32/makefiles for the new directory layout (new layout looks rather a muddle--needs rework) - verified build & test on NT and Solaris/gcc p4raw-id: //depot/win32/perl@1060
Diffstat (limited to 'mg.h')
-rw-r--r--mg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/mg.h b/mg.h
index c464746557..1490470218 100644
--- a/mg.h
+++ b/mg.h
@@ -8,11 +8,11 @@
*/
struct mgvtbl {
- int (*svt_get) _((SV *sv, MAGIC* mg));
- int (*svt_set) _((SV *sv, MAGIC* mg));
- U32 (*svt_len) _((SV *sv, MAGIC* mg));
- int (*svt_clear) _((SV *sv, MAGIC* mg));
- int (*svt_free) _((SV *sv, MAGIC* mg));
+ 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));
};
struct magic {