diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-29 11:05:50 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-05-29 11:05:50 +0000 |
commit | 26ca90b622247714396690e385249f8ca1417aa0 (patch) | |
tree | 520b78b2e1d8b3429b4833f9ee8a1465d8e6abc2 /mg.h | |
parent | 8a29a26d101c2a07bdfaee1b99a0c73504c5cbe4 (diff) | |
parent | 30ac6d9be367ff08cc605906fbe575fb1ca35fdf (diff) | |
download | perl-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.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 { |