diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-25 19:20:26 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-02-25 19:20:26 +0000 |
commit | 2c5424a7b24f0afdb98193a224569ec80832f5c9 (patch) | |
tree | 9f78e7cbe8221265c2765bfd057d689d5f0a9f54 /sv.c | |
parent | f7a92b15d369b78479721e50e5aad6f6d7b1862c (diff) | |
download | perl-2c5424a7b24f0afdb98193a224569ec80832f5c9.tar.gz |
[asperl] added AS patch#8
p4raw-id: //depot/asperl@587
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -65,8 +65,6 @@ static void sv_mortalgrow _((void)); static void sv_unglob _((SV* sv)); static void sv_check_thinkfirst _((SV *sv)); -#define SV_CHECK_THINKFIRST(sv) if (SvTHINKFIRST(sv)) sv_check_thinkfirst(sv) - #ifndef PURIFY static void *my_safemalloc(MEM_SIZE size); #endif @@ -77,6 +75,8 @@ typedef void (*SVFUNC) _((SV*)); #endif /* PERL_OBJECT */ +#define SV_CHECK_THINKFIRST(sv) if (SvTHINKFIRST(sv)) sv_check_thinkfirst(sv) + #ifdef PURIFY #define new_SV(p) \ |